/* ====================================================================
   f.bzzoiro · k-beauty metasearch — mobile-first
   ==================================================================== */

:root {
    --bg:           #faf6f3;
    --bg-card:      #ffffff;
    --bg-soft:      #f4eae5;
    --ink:          #1f1418;
    --ink-2:        #5a4750;
    --ink-3:        #9c8b92;
    --line:         #ede1dc;
    --line-strong:  #ddc8c1;
    --primary:      #e89aae;
    --primary-dark: #b95775;
    --primary-soft: #fce5ec;
    --accent:       #6fa888;
    --gold:         #c89556;
    --warn:         #de5757;
    --radius:       16px;
    --radius-lg:    24px;
    --radius-sm:    10px;
    --shadow-sm:    0 1px 0 rgba(31,20,24,0.04);
    --shadow:       0 1px 0 rgba(31,20,24,0.04), 0 12px 28px -16px rgba(185,87,117,0.18);
    --font-serif:   'DM Serif Display', 'Playfair Display', Georgia, serif;
    --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.15s; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; color: var(--ink); letter-spacing: -0.01em; line-height: 1.15; margin: 0 0 12px; }
h1 { font-size: 1.8rem; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.1rem; }
p { margin: 0 0 12px; }

.eyebrow { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary-dark); font-weight: 600; }
.muted { color: var(--ink-2); }
.subtle { color: var(--ink-3); font-size: 0.85rem; }

/* ====================================================================
   Layout
   ==================================================================== */
.container { padding: 0 16px; }
.main { padding: 16px 0 80px; min-height: 60vh; }
.section { margin: 28px 0; }
.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 16px;
}
.section-head h2 { margin: 0; font-size: 1.3rem; }
.section-head .more { color: var(--primary-dark); font-size: 0.85rem; font-weight: 600; }

/* Edge-to-edge sections (for horizontal scroll) */
.section.edge { padding: 0; }
.section.edge .section-body { padding: 0 16px; }

/* ====================================================================
   Header — mobile sticky
   ==================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250,246,243,0.95);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 16px;
    gap: 12px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink);
}
.brand-mark { font-size: 1.3rem; }
.brand-tag { display: none; }

.icon-btn {
    width: 40px; height: 40px;
    border: 0;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    cursor: pointer;
}
.icon-btn:hover { background: var(--bg-soft); }
.icon-btn svg { width: 22px; height: 22px; }

.header-actions { display: flex; gap: 4px; align-items: center; }

/* Search overlay (mobile) */
#search-toggle, #nav-checkbox { position: absolute; opacity: 0; pointer-events: none; }
.search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--bg);
    z-index: 100;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.2s ease;
    display: flex;
    gap: 8px;
    align-items: center;
}
#search-toggle:checked ~ .search-overlay { transform: translateY(0); }
.search-overlay input {
    flex: 1;
    border: 0;
    outline: 0;
    background: #fff;
    padding: 14px 18px;
    border-radius: 999px;
    font-size: 16px; /* prevents iOS zoom */
    box-shadow: var(--shadow-sm);
}
.search-overlay .close-btn {
    width: 40px; height: 40px;
    border: 0; background: transparent;
    color: var(--ink); font-size: 1.4rem; cursor: pointer;
}
.search-overlay .close-btn::after { content: "✕"; }

/* Mobile drawer nav */
.nav-scrim {
    position: fixed; inset: 0;
    background: rgba(31,20,24,0.5);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
#nav-checkbox:checked ~ .nav-scrim { opacity: 1; pointer-events: auto; }

.site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 84%;
    max-width: 320px;
    background: #fff;
    z-index: 100;
    padding: 72px 24px 24px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -16px 0 40px -10px rgba(31,20,24,0.18);
}
#nav-checkbox:checked ~ .site-nav { transform: translateX(0); }
.site-nav .close-btn {
    position: absolute;
    top: 12px; right: 12px;
    width: 40px; height: 40px;
    border: 0; background: transparent;
    color: var(--ink); font-size: 1.4rem; cursor: pointer;
}
.site-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-nav a.nav-hot { color: var(--primary-dark); font-weight: 600; }
.site-nav a::after { content: "→"; color: var(--ink-3); }

/* ====================================================================
   Hero — compact, no clutter
   ==================================================================== */
.hero {
    padding: 24px 16px 8px;
}
.hero .eyebrow { margin-bottom: 8px; }
.hero h1 {
    font-size: 1.9rem;
    line-height: 1.1;
    margin-bottom: 6px;
}
.hero h1 em { font-style: normal; color: var(--primary-dark); }
.hero p {
    color: var(--ink-2);
    font-size: 0.92rem;
    margin: 0;
}
.hero p strong {
    color: var(--ink);
    font-weight: 600;
}

/* ====================================================================
   Mega deal — Instagram-style: big image, big % badge on image
   ==================================================================== */
.mega-deal {
    margin: 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    display: block;
    color: var(--ink);
    box-shadow: var(--shadow);
}
.mega-deal .md-image {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #fef0f3 0%, #f5e9e3 100%);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
}
.mega-deal .md-image img { width: 100%; height: 100%; object-fit: cover; }
.mega-deal .md-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--primary-dark);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 2rem;
    padding: 8px 16px;
    border-radius: 14px;
    line-height: 1;
    box-shadow: 0 8px 16px rgba(185,87,117,0.3);
}
.mega-deal .md-badge small { font-size: 1rem; }
.mega-deal .md-label {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(31,20,24,0.85);
    color: #fff;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}
.mega-deal .md-body {
    padding: 20px;
}
.mega-deal .md-brand {
    font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--primary-dark); font-weight: 600; margin-bottom: 6px;
}
.mega-deal .md-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--ink);
}
.mega-deal .md-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}
.mega-deal .md-price {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink);
}
.mega-deal .md-strike {
    color: var(--ink-3);
    text-decoration: line-through;
    font-size: 0.95rem;
}
.mega-deal .md-meta {
    font-size: 0.85rem;
    color: var(--ink-2);
}
.mega-deal .md-meta strong { color: var(--ink); }

/* ====================================================================
   Horizontal scrolling pill rows (categories / brands)
   ==================================================================== */
.scroll-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 16px 16px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row .pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.88rem;
    white-space: nowrap;
}
.scroll-row .pill .pill-count { color: var(--ink-3); font-size: 0.74rem; }

/* Category cards (alternative: bigger emoji cards in scroll-row) */
.cat-row .cat-card {
    flex: 0 0 96px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 10px 10px;
    text-align: center;
    color: var(--ink);
}
.cat-row .cat-emoji { font-size: 1.8rem; margin-bottom: 4px; }
.cat-row .cat-name { font-size: 0.78rem; line-height: 1.2; }

/* ====================================================================
   Product cards — Instagram-style 2-col on mobile
   ==================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
}
.product-card {
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-card .pc-image {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #fef0f3 0%, #f5e9e3 100%);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
}
.product-card .pc-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card .pc-pct {
    position: absolute;
    top: 8px; left: 8px;
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
}
.product-card .pc-stores {
    position: absolute;
    bottom: 8px; right: 8px;
    background: rgba(255,255,255,0.95);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
}
.product-card .pc-brand {
    font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--primary-dark); font-weight: 600;
    margin-top: 4px;
}
.product-card .pc-name {
    font-size: 0.85rem;
    line-height: 1.3;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}
.product-card .pc-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.product-card .pc-price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--ink);
}
.product-card .pc-strike {
    color: var(--ink-3);
    text-decoration: line-through;
    font-size: 0.78rem;
}

/* ====================================================================
   Product detail
   ==================================================================== */
.breadcrumb {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 0 16px;
    font-size: 0.82rem;
    color: var(--ink-3);
    margin-bottom: 4px;
}
.breadcrumb a { color: var(--ink-2); }
.breadcrumb a:active { color: var(--primary-dark); }

.product-hero {
    padding: 8px 0 16px;
}
.product-hero .ph-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #fef0f3 0%, #f5e9e3 100%);
    margin: 0 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem;
}
.product-hero .ph-image img { width: 100%; height: 100%; object-fit: cover; }
.product-hero .ph-body { padding: 18px 16px 0; }
.product-hero .ph-brand {
    font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--primary-dark); font-weight: 600;
    margin-bottom: 6px;
}
.product-hero h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.chip {
    background: var(--bg-soft);
    color: var(--ink-2);
    font-size: 0.76rem;
    padding: 5px 12px;
    border-radius: 999px;
    border: 0;
}
.chip strong { color: var(--ink); margin-right: 4px; }

/* Signal card */
.signal-card {
    margin: 0 16px 16px;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    gap: 12px;
    align-items: center;
}
.signal-card .signal-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.signal-card .signal-body strong { font-family: var(--font-serif); font-size: 1.05rem; display: block; margin-bottom: 2px; }
.signal-card .signal-body .signal-reason { font-size: 0.82rem; color: var(--ink-2); }
.signal-card.great { background: linear-gradient(90deg, #e9f6ef, #fff); border-color: #b9e1ca; }
.signal-card.great .signal-dot { background: var(--accent); }
.signal-card.good { background: linear-gradient(90deg, #f2f8ee, #fff); border-color: #cfe4ba; }
.signal-card.good .signal-dot { background: #95b96f; }
.signal-card.ok { background: linear-gradient(90deg, #fff7e8, #fff); border-color: #ecd8a6; }
.signal-card.ok .signal-dot { background: var(--gold); }
.signal-card.bad { background: linear-gradient(90deg, #fbeaea, #fff); border-color: #eebebe; }
.signal-card.bad .signal-dot { background: var(--warn); }
.signal-card.muted .signal-dot { background: var(--ink-3); }

/* KPI strip — 2x2 on mobile */
.kpi-strip {
    margin: 0 16px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.kpi {
    padding: 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.kpi:nth-child(2n) { border-right: 0; }
.kpi:nth-last-child(-n+2) { border-bottom: 0; }
.kpi .label { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.kpi .value { font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink); margin-top: 4px; line-height: 1.1; }
.kpi .sub { font-size: 0.72rem; color: var(--ink-3); margin-top: 2px; }

/* Offer list — card style */
.offer-list {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.offer-row {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}
.offer-row.best { background: linear-gradient(135deg, #fdf2f5 0%, #fff 60%); border-color: var(--primary); position: relative; }
.offer-row.best::before {
    content: "MEJOR";
    position: absolute;
    top: -8px; left: 14px;
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 3px 9px;
    border-radius: 999px;
}
.offer-row .or-info { display: flex; gap: 10px; align-items: center; min-width: 0; }
.offer-row .or-logo {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex: none;
}
.offer-row .or-retailer { font-weight: 600; font-size: 0.92rem; }
.offer-row .or-meta { font-size: 0.72rem; color: var(--ink-3); }
.offer-row .or-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink);
    text-align: right;
    line-height: 1.1;
}
.offer-row .or-price .conv { display: block; font-family: var(--font-sans); font-size: 0.7rem; color: var(--ink-3); margin-top: 2px; }
.offer-row .or-status {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    margin-top: 4px;
}
.offer-row .or-status .status-pill {
    font-size: 0.74rem; padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-soft); color: var(--ink-2);
}
.offer-row .or-status .status-pill.ok { background: #e9f6ef; color: #2f6f4a; }
.offer-row .or-status .status-pill.out { background: var(--bg-soft); color: var(--ink-3); }
.offer-row .btn-buy {
    background: var(--primary-dark);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    border: 0;
}
.offer-row .btn-buy.muted { background: var(--bg-soft); color: var(--ink-3); }
.offer-row.sold-out { opacity: 0.65; }

/* Chart */
.chart-card {
    margin: 0 16px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
}
.chart-card h3 { margin-bottom: 12px; }
.chart-legend {
    display: flex; flex-wrap: wrap; gap: 12px;
    font-size: 0.78rem; color: var(--ink-2);
    margin-top: 10px;
}
.chart-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-right: 5px; vertical-align: middle; }
canvas { max-width: 100%; }

/* Description / ingredients block */
.product-body { padding: 0 16px; margin-top: 20px; }
.product-body h2 { font-size: 1.2rem; margin-top: 24px; }
.product-body p { color: var(--ink-2); font-size: 0.92rem; line-height: 1.6; }

/* ====================================================================
   Search results page
   ==================================================================== */
.results-head {
    padding: 0 16px;
    margin-bottom: 16px;
}
.results-head h1 { font-size: 1.4rem; margin-bottom: 4px; }
.results-head p { margin: 0; color: var(--ink-3); font-size: 0.85rem; }

.filter-bar {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 0 16px 8px;
    scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-bar select {
    flex: 0 0 auto;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink-2);
    font-size: 0.86rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235a4750' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

.empty-state {
    text-align: center;
    padding: 60px 24px;
    color: var(--ink-2);
}

/* ====================================================================
   Footer
   ==================================================================== */
.site-footer {
    border-top: 1px solid var(--line);
    background: #fff;
    padding: 28px 16px;
    margin-top: 60px;
    color: var(--ink-2);
    font-size: 0.85rem;
}
.site-footer strong { color: var(--ink); }
.site-footer p { margin: 0 0 8px; }

/* ====================================================================
   Desktop overrides
   ==================================================================== */
@media (min-width: 768px) {
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    h1 { font-size: 2.6rem; }
    h2 { font-size: 1.7rem; }

    .header-inner { height: 64px; padding: 0; }
    .brand { font-size: 1.4rem; }
    .brand-tag {
        display: inline-block;
        font-size: 0.64rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--primary-dark);
        font-weight: 600;
        margin-left: 8px;
    }
    .header-actions .icon-btn.menu-btn,
    .header-actions .icon-btn.search-btn { display: none; }
    .header-actions { gap: 0; }
    .desktop-search {
        flex: 1;
        max-width: 480px;
        margin: 0 24px;
        display: flex;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 4px 4px 4px 18px;
        box-shadow: var(--shadow-sm);
    }
    .desktop-search input { flex: 1; border: 0; outline: 0; background: transparent; }
    .desktop-search button {
        background: var(--primary-dark);
        color: #fff; border: 0;
        padding: 9px 22px;
        border-radius: 999px;
        font-weight: 600;
    }
    .desktop-nav { display: flex; gap: 22px; }
    .desktop-nav a { color: var(--ink-2); }
    .desktop-nav a:hover { color: var(--ink); }
    .desktop-nav a.nav-hot { color: var(--primary-dark); font-weight: 600; }

    .site-nav, .nav-scrim, .search-overlay { display: none; }

    .hero { padding: 48px 0 32px; }
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.1rem; max-width: 640px; }

    .mega-deal {
        margin: 0;
        display: grid;
        grid-template-columns: minmax(280px, 420px) 1fr;
        align-items: stretch;
    }
    .mega-deal .md-image { aspect-ratio: 1; }
    .mega-deal .md-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
    .mega-deal .md-name { font-size: 2rem; }
    .mega-deal .md-price { font-size: 2rem; }

    .section-head { padding: 0; }
    .section.edge .section-body { padding: 0; }
    .scroll-row { padding: 4px 0 16px; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; padding: 0; }
    .product-card .pc-name { font-size: 0.95rem; }
    .product-card .pc-price { font-size: 1.3rem; }

    .breadcrumb { padding: 0; }
    .product-hero { display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: 36px; align-items: start; padding: 16px 0 24px; }
    .product-hero .ph-image { margin: 0; }
    .product-hero .ph-body { padding: 0; }
    .product-hero h1 { font-size: 2rem; }

    .signal-card, .chip-row, .kpi-strip { margin-left: 0; margin-right: 0; }
    .chart-card { margin: 0 0 24px; padding: 24px; }
    .offer-list { padding: 0; }
    .offer-row { grid-template-columns: 2fr 1fr 1fr auto; gap: 16px; }
    .offer-row .or-status {
        grid-column: auto;
        padding-top: 0; border-top: 0; margin-top: 0;
        flex-direction: column; align-items: flex-end;
    }
    .product-body { padding: 0; }
    .results-head { padding: 0; }
    .filter-bar { padding: 0 0 8px; }
}
