/* Prodato.cz — Modern Light Theme */

/* ===== Variables ===== */
:root {
    --brand: #2563eb;
    --brand-hover: #1d4ed8;
    --brand-light: #eff6ff;
    --accent: #06b6d4;
    --price: #059669;
    --price-bg: #ecfdf5;

    --bg: #f1f5f9;
    --bg-white: #ffffff;
    --text: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-glow: 0 8px 30px rgba(37,99,235,0.15);
    --radius: 12px;
    --radius-sm: 8px;

    --gradient-brand: linear-gradient(135deg, #2563eb, #06b6d4);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Gradient text utility */
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Reset PicoCSS dark mode ===== */
[data-theme="light"] {
    --pico-background-color: var(--bg);
    --pico-card-background-color: var(--bg-white);
    --pico-color: var(--text);
    --pico-muted-color: var(--text-muted);
    --pico-primary: var(--brand);
    --pico-primary-hover: var(--brand-hover);
}

body {
    background: var(--bg);
    color: var(--text);
}

/* ===== Inline SVG icons ===== */
.icon {
    vertical-align: -0.15em;
    margin-right: 0.3em;
    flex-shrink: 0;
}

/* ===== Site Header ===== */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}
.site-header .container {
    padding-top: 0;
    padding-bottom: 0;
}
.site-header nav {
    margin: 0;
    padding: 0.6rem 0;
}
.site-header nav ul {
    margin: 0;
}
.site-header nav a {
    color: var(--text-secondary);
    font-weight: 500;
}
.site-header nav a:hover {
    color: var(--brand);
}

/* Hamburger button — hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text);
}
.hamburger svg {
    display: block;
}

/* Close button — hidden on desktop */
.nav-close {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        align-items: center;
    }
    .site-header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        z-index: 200;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 2rem;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: var(--radius-sm);
        transition: background 0.2s;
    }
    .nav-links a:hover {
        background: var(--brand-light);
    }
    .nav-links .nav-search {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .nav-links .nav-search input {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    .nav-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        color: var(--text);
        font-size: 1.5rem;
    }
}

/* Logo */
.logo {
    text-decoration: none !important;
    font-size: 1.3rem;
    color: var(--text) !important;
}
.logo strong {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-dot {
    color: var(--text-muted);
    font-weight: 400;
}

/* Nav search */
.nav-search {
    margin: 0;
    display: inline;
}
.nav-search input {
    margin: 0;
    padding: 0.35rem 0.75rem;
    height: auto;
    font-size: 0.85rem;
    border-radius: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
}
.nav-search input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===== Hero Section ===== */
section.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 40%, #06b6d4 100%) !important;
    background-size: 200% 200% !important;
    animation: heroGradient 8s ease infinite;
    color: #fff !important;
    padding: 4rem 0 !important;
    margin: 0;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
section.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
    pointer-events: none;
}
section.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(6,182,212,0.08);
    filter: blur(60px);
    top: -80px;
    right: -60px;
    animation: heroBlob1 7s ease-in-out infinite;
    pointer-events: none;
}
@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes heroBlob1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 25px); }
}
.hero-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
section.hero h1 {
    color: #fff !important;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
section.hero p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.hero-search {
    display: flex;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 50px;
    padding: 0.3rem;
    box-shadow: var(--shadow-lg);
}
.hero-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.7rem 1.2rem;
    margin: 0;
    font-size: 1rem;
    color: var(--text);
    outline: none;
}
.hero-search input::placeholder {
    color: var(--text-muted);
}
.hero-search button {
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
    background: var(--brand);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    overflow: hidden;
}
.hero-search button:hover {
    background: var(--brand-hover);
}

/* ===== Sections ===== */
.section {
    padding: 2rem 0;
}
.section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text);
}
.section-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.section-header h2 {
    margin-bottom: 0 !important;
}
.view-all {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}
.view-all:hover {
    text-decoration: underline;
}
.page-content {
    padding: 2rem 0;
}

/* ===== Category Grid ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}
.category-grid.small {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.category-grid--themed {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.category-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* Themed category card */
.category-card--themed {
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    border-top: 3px solid var(--cat-color, var(--brand));
}
.category-card--themed:hover {
    border-color: var(--cat-color, var(--brand));
    border-top-color: var(--cat-color, var(--brand));
    box-shadow: 0 6px 20px color-mix(in srgb, var(--cat-color, var(--brand)) 20%, transparent);
    transform: translateY(-4px);
    background: color-mix(in srgb, var(--cat-color) 4%, var(--bg-white));
}

.category-card__icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
    transition: transform 0.3s ease;
}
.category-card--themed:hover .category-card__icon {
    transform: scale(1.15);
}

.category-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-count {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}
.category-card.small {
    padding: 0.75rem;
}
.category-card.small .category-name {
    font-size: 0.82rem;
}

/* Category filter */
.category-filter {
    margin-bottom: 1.5rem;
}
.category-filter__wrap {
    position: relative;
    max-width: 400px;
}
.category-filter__icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}
.category-filter input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--bg-white);
    margin-bottom: 0;
}
.category-filter input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* Category banner */
.category-banner {
    background: linear-gradient(135deg, color-mix(in srgb, var(--cat-color) 15%, var(--bg-white)) 0%, color-mix(in srgb, var(--cat-color) 6%, var(--bg)) 100%);
    border-bottom: 3px solid color-mix(in srgb, var(--cat-color) 35%, transparent);
    padding: 1.5rem 0 1.75rem;
    margin-bottom: 0;
}
.category-banner .breadcrumbs ul {
    margin-bottom: 0.75rem;
}

/* Category detail header */
.category-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 0;
}
.category-header__icon {
    font-size: 2.8rem;
    line-height: 1;
    background: color-mix(in srgb, var(--cat-color) 20%, var(--bg-white));
    border: 2px solid color-mix(in srgb, var(--cat-color) 30%, transparent);
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    flex-shrink: 0;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--cat-color) 15%, transparent);
}
.category-header__title {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.3;
    color: color-mix(in srgb, var(--cat-color) 50%, var(--text));
}
.category-header .category-desc {
    margin-bottom: 0;
    margin-top: 0.35rem;
}

/* Subcategory cards with parent color */
.category-card--sub {
    padding: 0.8rem 1rem;
    border-left: 3px solid var(--cat-color, var(--brand));
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.category-card--sub:hover {
    background: color-mix(in srgb, var(--cat-color) 6%, var(--bg-white));
    border-color: var(--cat-color, var(--brand));
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.category-card--sub .category-name {
    font-size: 0.85rem;
}
.category-card--sub .category-count {
    font-size: 0.75rem;
    color: var(--cat-color, var(--text-muted));
    opacity: 0.8;
}

/* Category groups */
.category-group {
    margin-bottom: 1.5rem;
}
.category-group__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-light);
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}
.category-group__count {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ===== Product Grid ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

/* ===== Product Card ===== */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
    box-shadow: none;
}
.product-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
    border-color: rgba(37,99,235,0.15);
}

.product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-card__img {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.75rem;
    transition: transform 0.3s ease;
}
.product-card:hover .product-card__img img {
    transform: scale(1.05);
}
.product-card__img--empty {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.product-card__img--empty svg {
    color: var(--border);
}

.product-card__title {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    padding: 0.75rem 0.85rem 0;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.25rem 0.85rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-card__footer {
    padding: 0.5rem 0.85rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-card__price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--price);
}
.product-card__brand {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card__buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.65rem 0.85rem 0.85rem;
    padding: 0.5rem;
    background: var(--brand);
    color: #fff !important;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
}
.product-card__buy:hover {
    background: var(--brand-hover);
}
/* Shine sweep effect on CTA buttons */
.product-card__buy::after,
.buy-btn-big::after,
.hero-search button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.product-card__buy:hover::after,
.buy-btn-big:hover::after,
.hero-search button:hover::after {
    left: 100%;
}
.product-card__buy .icon {
    margin-right: 0.15em;
}

/* ===== Product Detail ===== */
.product-detail {
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}
.product-images .main-image {
    width: 100%;
    aspect-ratio: 1;
    max-height: 500px;
    object-fit: contain;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1rem;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    cursor: zoom-in;
}
.product-images .main-image:hover {
    transform: scale(1.04);
}
.image-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    overflow-x: auto;
}
.image-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: var(--bg-white);
    border-radius: 6px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s;
}
.image-thumbnails img:hover,
.image-thumbnails img.active {
    border-color: var(--brand);
}

.product-info h1 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.product-info .subtitle {
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.product-info .manufacturer {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #ecfdf5 100%);
    border-radius: var(--radius);
    border: 1px solid #bbf7d0;
    position: relative;
    box-shadow: 0 2px 12px rgba(5,150,105,0.08);
}
.price-big {
    font-size: 2rem;
    font-weight: 800;
    color: var(--price);
    letter-spacing: -0.02em;
}
.buy-btn-big {
    white-space: nowrap;
    background: var(--gradient-brand);
    color: #fff !important;
    padding: 0.75rem 1.75rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(37,99,235,0.25);
}
.buy-btn-big:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}
.buy-btn-big::after {
    content: "";
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}
.buy-btn-big:hover::after {
    left: 100%;
}

/* Price Alert */
.price-alert { margin: 1rem 0; }
.price-alert__toggle {
    background: none; border: 1px solid var(--border); color: var(--text);
    padding: 0.5rem 1rem; border-radius: var(--radius-sm); cursor: pointer;
    font-size: 0.85rem; transition: all 0.2s; width: auto !important;
    display: inline-flex !important; align-items: center; gap: 0.3rem;
}
.price-alert__toggle:hover { border-color: var(--brand); color: var(--brand); }
.price-alert__form {
    display: none; margin-top: 0.5rem; gap: 0.5rem;
    align-items: center; flex-wrap: wrap;
}
.price-alert__form.open { display: flex; }
.price-alert__input {
    padding: 0.5rem 0.75rem; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.9rem;
    flex: 1 1 auto; min-width: 180px; margin: 0 !important;
}
.price-alert__submit {
    background: var(--brand) !important; color: #fff !important;
    border: none !important; padding: 0.5rem 1rem; border-radius: var(--radius-sm);
    cursor: pointer; font-size: 0.85rem; white-space: nowrap;
    width: auto !important; display: inline-block !important;
}
.price-alert__submit:hover { background: var(--brand-hover) !important; }
.price-alert__msg { font-size: 0.8rem; margin: 0.25rem 0 0; width: 100%; }

.shop-box {
    margin: 1.5rem 0 1rem;
}
.shop-box__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}
.shop-box__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--brand);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s ease;
}
.shop-box__link:hover {
    border-color: var(--brand);
    border-left-color: var(--accent);
    box-shadow: var(--shadow-glow);
    transform: translateX(4px);
}
.shop-box__logo {
    border-radius: 4px;
    flex-shrink: 0;
}
.shop-box__info {
    flex: 1;
    min-width: 0;
}
.shop-box__info strong {
    display: block;
    font-size: 0.9rem;
}
.shop-box__info small {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.3;
    margin-top: 0.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.shop-box__arrow {
    flex-shrink: 0;
    color: var(--text-muted);
}

.short-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

.long-desc {
    margin: 2rem 0;
    line-height: 1.7;
    background: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-left: 4px solid var(--brand);
}
.long-desc h2,
.long-desc h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.params {
    margin: 2rem 0;
}
.params h3 {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.params table {
    margin-top: 0.5rem;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.params table tr:nth-child(even) {
    background: var(--brand-light);
}
.params th {
    width: 35%;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.ean {
    color: var(--text-muted);
}

/* ===== Related Products Slider ===== */
.related-products {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}
.related-products h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.related-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.related-slider::-webkit-scrollbar {
    height: 6px;
}
.related-slider::-webkit-scrollbar-track {
    background: transparent;
}
.related-slider::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}
.related-slider .product-card {
    min-width: 200px;
    max-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* ===== Price Compare (Multi-shop) ===== */
.price-compare {
    margin: 1.5rem 0 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.price-compare__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.6rem 1rem 0.4rem;
    background: var(--bg);
    margin: 0;
    font-weight: 600;
}
.price-compare__current,
.price-compare__row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-top: 1px solid var(--border);
}
.price-compare__current {
    background: var(--price-bg);
}
.price-compare__shop {
    flex: 1;
    font-weight: 500;
    font-size: 0.9rem;
}
.price-compare__price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    white-space: nowrap;
}
.price-compare__price--best {
    color: var(--price);
    font-size: 1.1rem;
}
.price-compare__btn {
    padding: 0.3rem 0.75rem;
    background: var(--brand);
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s;
}
.price-compare__btn:hover {
    background: var(--brand-hover);
}

/* ===== Price History Chart ===== */
.price-history {
    margin: 2rem 0;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.price-history h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-history__chart {
    width: 100%;
    overflow-x: auto;
}
.price-history__chart canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ===== Recently Viewed ===== */
.recently-viewed {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.recently-viewed h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ===== Search Page ===== */
.search-page-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.4rem;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    transition: border-color 0.3s;
}
.search-page-form:focus-within {
    border-color: var(--brand);
    box-shadow: 0 4px 20px rgba(37,99,235,0.12);
}
.search-page-form input {
    margin-bottom: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    font-size: 1.05rem;
}
.search-page-form input:focus {
    box-shadow: none;
    border: none;
}
.search-page-form button {
    border-radius: var(--radius-sm);
    background: var(--gradient-brand);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
}

/* ===== Sort Toolbar ===== */
.sort-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.sort-toolbar .results-count {
    margin: 0;
}
.sort-select {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.sort-select label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    white-space: nowrap;
}
.sort-select select {
    font-size: 0.85rem;
    padding: 0.3rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    color: var(--text-primary);
    margin: 0;
    cursor: pointer;
}
.sort-select select:focus {
    outline: none;
    border-color: var(--brand);
}

.results-count {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-secondary);
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    max-width: 500px;
    margin: 2rem auto;
}
.empty-state__icon {
    color: var(--text-muted);
    margin-bottom: 1rem;
    opacity: 0.6;
}
.empty-state h2 {
    font-size: 1.3rem;
    color: var(--text);
}
.empty-state p {
    margin-bottom: 1rem;
}
.empty-state__tips {
    text-align: left;
    display: inline-block;
    margin: 1rem 0;
}
.empty-state__tips ul {
    padding-left: 1.2rem;
}
.empty-state__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.empty-state__actions .btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--gradient-brand);
    color: #fff;
}
.empty-state__actions .btn--outline {
    background: transparent;
    color: var(--brand);
    border: 1px solid var(--brand);
}

/* ===== Breadcrumbs ===== */
.breadcrumbs ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 1rem;
    font-size: 0.82rem;
    gap: 0.2rem;
    align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
    content: "\203A";
    margin: 0 0.4rem;
    color: var(--text-muted);
    font-size: 0.9em;
}
.breadcrumbs li:last-child {
    color: var(--text-muted);
    font-weight: 500;
}
.breadcrumbs a {
    color: var(--brand);
    text-decoration: none;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}
.breadcrumbs a:hover {
    text-decoration: none;
    background: var(--brand-light);
}

/* ===== Pagination ===== */
.pagination {
    margin: 2rem 0;
    text-align: center;
}
.pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 0;
    align-items: center;
    margin: 0;
}
.pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0.4rem 0.9rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--brand);
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pagination__link:hover {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}
.pagination__info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--gradient-dark);
    color: rgba(255,255,255,0.85);
    margin-top: 0;
    padding: 0;
    border: none;
    position: relative;
}
.site-footer .container {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
}

/* Wave separator */
.footer-wave {
    height: 60px;
    background: var(--bg);
    position: relative;
    margin-top: 3rem;
}
.footer-wave::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--gradient-dark);
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* CTA banner */
.footer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.25rem 2rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(4px);
    flex-wrap: wrap;
}
.footer-cta__text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}
.footer-cta__btn {
    background: var(--gradient-brand);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.footer-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}

/* Footer grid — 3 columns */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}
.footer-grid strong {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.75rem;
}
.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-grid ul li {
    margin-bottom: 0.4rem;
}
.footer-grid ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    position: relative;
}
.footer-grid ul a:hover {
    color: #fff;
}
.footer-grid ul a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.footer-grid ul a:hover::after {
    width: 100%;
}

/* Footer logo on dark */
.footer-logo {
    font-size: 1.25rem;
}
.site-footer .footer-logo .logo-dot {
    color: rgba(255,255,255,0.5);
    -webkit-text-fill-color: rgba(255,255,255,0.5);
}

/* Footer features list */
.footer-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.6rem !important;
    line-height: 1.4;
}
.footer-features__icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Footer newsletter */
.footer-newsletter {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 1.5rem;
}
.footer-newsletter strong {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}
.newsletter-form input[type="email"] {
    flex: 1 1 auto;
    min-width: 200px;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.85rem;
    margin: 0;
    width: auto;
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}
.newsletter-form input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(6,182,212,0.3);
}
.newsletter-form button {
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.newsletter-form button:hover {
    background: #0891b2;
}
.newsletter-msg {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    margin: 0;
}
.footer-bottom__link {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.2s;
}
.footer-bottom__link:hover {
    color: rgba(255,255,255,0.8);
}

/* ===== Category Description ===== */
.category-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 700px;
}

/* ===== Shops Page ===== */
.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}
.shop-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--brand);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
}
.shop-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
    border-top-color: var(--accent);
}
.shop-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.shop-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}
.shop-card__count {
    font-size: 0.75rem;
    color: var(--brand);
    white-space: nowrap;
    background: var(--brand-light);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
}
.shop-card__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 0.75rem;
}
.shop-card__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}
.shop-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 500;
    border: 1px solid rgba(37,99,235,0.12);
    transition: background 0.2s;
}
.shop-card:hover .shop-tag {
    background: rgba(37,99,235,0.12);
}
.shop-card__link {
    color: var(--brand);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s ease;
}
.shop-card__link:hover {
    text-decoration: none;
    gap: 0.6rem;
    color: var(--brand-hover);
}

/* ===== Manufacturers ===== */
.mfg-page-header {
    text-align: center;
    margin-bottom: 2rem;
}
.mfg-page-header h1 {
    margin: 0 0 0.25rem;
}
.mfg-page-header__sub {
    color: var(--text-secondary);
    margin: 0;
}
.mfg-section {
    margin-bottom: 2.5rem;
}
.mfg-section__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}
.mfg-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}
a.mfg-card {
    display: flex !important;
    flex-direction: column;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-decoration: none !important;
    color: var(--text);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
a.mfg-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    color: var(--text);
}
.mfg-card__img {
    height: 100px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mfg-card__img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    padding: 0.5rem;
}
.mfg-card__img--empty {
    background: var(--brand-light);
    color: var(--brand);
    font-size: 2rem;
    font-weight: 800;
}
.mfg-card__body {
    padding: 0.5rem 0.6rem;
    border-top: 1px solid var(--border);
}
.mfg-card__name {
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mfg-card__count {
    font-size: 0.72rem;
    color: var(--text-muted);
}
.mfg-detail-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}
.mfg-detail-header h1 {
    margin: 0;
}
.mfg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
a.mfg-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 2rem;
    text-decoration: none !important;
    color: var(--text);
    font-size: 0.82rem;
    transition: border-color 0.2s, background 0.2s;
}
a.mfg-tag:hover {
    border-color: var(--brand);
    background: var(--brand-light);
    color: var(--text);
}
.mfg-tag__count {
    color: var(--text-muted);
    font-size: 0.72rem;
}
/* Manufacturer detail — categories */
.mfg-categories {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.mfg-categories__title {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.mfg-categories__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
a.mfg-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 2rem;
    text-decoration: none !important;
    color: var(--text);
    font-size: 0.78rem;
    transition: border-color 0.2s, background 0.2s;
}
a.mfg-cat-chip:hover {
    border-color: var(--brand);
    background: var(--brand-light);
    color: var(--text);
}
a.mfg-cat-chip--active {
    background: var(--brand) !important;
    border-color: var(--brand) !important;
    color: #fff !important;
}
.mfg-cat-chip__count {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* ===== About ===== */
.about-page section {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}
.about-page section h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* ===== Responsive — Tablet ===== */
@media (max-width: 768px) {
    /* Header compact */
    .site-header nav {
        padding: 0.4rem 0;
    }
    /* Hero */
    section.hero {
        padding: 2rem 0 !important;
    }
    section.hero h1 {
        font-size: 1.6rem;
    }
    section.hero p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    .hero-search {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 0.4rem;
    }
    .hero-search button {
        border-radius: var(--radius-sm);
    }
    /* Grids */
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
        gap: 0.6rem;
    }
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .category-grid--themed {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .product-card__desc {
        display: none;
    }
    .shops-grid {
        grid-template-columns: 1fr;
    }
    .shop-card {
        padding: 1rem;
    }
    .product-layout {
        gap: 1.25rem;
    }
    .price-box {
        flex-wrap: wrap;
        padding: 0.85rem;
        margin: 1rem 0;
    }
    .mfg-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
    .search-page-form {
        flex-direction: column;
    }
    .category-header {
        gap: 0.75rem;
    }
    .category-header__title {
        font-size: 1.3rem;
    }
    .category-header__icon {
        width: 3.2rem;
        height: 3.2rem;
        font-size: 2rem;
    }
    .related-slider .product-card {
        min-width: 155px;
        max-width: 175px;
    }
    .pagination ul {
        gap: 0.3rem;
    }
    .pagination__link {
        padding: 0.4rem 0.7rem;
        font-size: 0.82rem;
    }
    .sort-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
    /* Tighter spacing */
    .page-content {
        padding: 1.25rem 0;
    }
    .section {
        padding: 1.25rem 0;
    }
    .section h2 {
        font-size: 1.3rem;
    }
    .footer-wave {
        height: 40px;
        margin-top: 2rem;
    }
    .footer-wave::after {
        height: 40px;
    }
    .footer-cta {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    .footer-cta__text {
        font-size: 0.95rem;
    }
    .footer-grid {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    /* Touch-friendly buttons */
    .product-card__buy {
        padding: 0.55rem;
        min-height: 44px;
    }
    .buy-btn-big {
        padding: 0.75rem 1.5rem;
        min-height: 44px;
    }
    /* Breadcrumbs */
    .breadcrumbs ul {
        font-size: 0.78rem;
    }
}

/* ===== Responsive — Mobile ===== */
@media (max-width: 576px) {
    section.hero {
        padding: 1.5rem 0 !important;
    }
    section.hero h1 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    section.hero p {
        font-size: 0.88rem;
        margin-bottom: 1rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    .category-grid,
    .category-grid--themed {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    .category-card__icon {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    .category-card--themed {
        padding: 0.7rem 0.5rem;
        border-top-width: 2px;
    }
    .category-name {
        font-size: 0.82rem;
    }
    .category-count {
        font-size: 0.72rem;
    }
    .product-card__title {
        font-size: 0.78rem;
        padding: 0.4rem 0.5rem 0;
    }
    .product-card__footer {
        padding: 0.3rem 0.5rem 0;
    }
    .product-card__buy {
        margin: 0.4rem 0.5rem 0.5rem;
        font-size: 0.78rem;
        padding: 0.4rem;
        min-height: 38px;
    }
    .product-card__price {
        font-size: 0.88rem;
    }
    .product-card__price-original {
        font-size: 0.7rem;
    }
    .product-card__brand {
        font-size: 0.68rem;
    }
    .page-content {
        padding: 0.75rem 0;
    }
    .page-content > h1 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    .section {
        padding: 1rem 0;
    }
    .section h2 {
        font-size: 1.15rem;
    }
    .section-header {
        margin-bottom: 0.75rem;
    }
    .view-all {
        font-size: 0.82rem;
    }
    .mfg-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.4rem;
    }
    .mfg-card__img {
        height: 75px;
    }
    .category-header__icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.6rem;
    }
    .category-header__title {
        font-size: 1.15rem;
    }
    .category-banner {
        padding: 1rem 0 1.25rem;
    }
    .product-info h1 {
        font-size: 1.2rem;
    }
    .price-big {
        font-size: 1.35rem;
    }
    .params th {
        width: 40%;
    }
    .results-count {
        font-size: 0.82rem;
    }
    /* Product images slightly taller on mobile */
    .product-card__img {
        aspect-ratio: 5/4;
    }
    /* Compact footer */
    .footer-wave { height: 30px; }
    .footer-cta { padding: 0.75rem; gap: 0.5rem; }
    .footer-cta__text { font-size: 0.85rem; }
    .footer-cta__btn { font-size: 0.8rem; padding: 0.4rem 1rem; }
    .footer-grid { gap: 1.25rem; }
    .footer-brand p { font-size: 0.82rem; }
    .footer-links ul { gap: 0.25rem; }
    .footer-links ul a { font-size: 0.82rem; }
    .footer-features li { font-size: 0.82rem; }
    .footer-bottom { font-size: 0.75rem; }
    /* Shop cards */
    .shop-card {
        padding: 0.85rem;
    }
    .shop-card__name {
        font-size: 1rem;
    }
    .shop-card__desc {
        font-size: 0.82rem;
    }
}

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}
.hero-stat strong {
    font-size: 1.5rem;
    color: var(--pico-primary);
    letter-spacing: -0.5px;
}
.hero-stat span {
    font-size: 0.85rem;
    opacity: 0.8;
}
.hero-stat-divider {
    width: 1px;
    height: 2rem;
    background: rgba(255,255,255,0.3);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .hero-stats { gap: 0.75rem; margin-top: 1rem; }
    .hero-stat strong { font-size: 1.2rem; }
    .hero-stat span { font-size: 0.75rem; }
    .hero-stat-divider { height: 1.5rem; }
}

/* ===== Product Card Badges ===== */
.product-card__img {
    position: relative;
}
.product-card__badges {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: flex;
    gap: 0.35rem;
    z-index: 2;
}
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.badge--stock {
    background: #dcfce7;
    color: #166534;
}
.badge--sale {
    background: #fee2e2;
    color: #991b1b;
}
.product-card__price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}
.product-card__price-original {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: line-through;
}

/* ===== Product Card Shadows + Glow ===== */
.product-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
}
.product-card:hover {
    box-shadow: 0 8px 30px rgba(37,99,235,0.12), 0 2px 8px rgba(37,99,235,0.08);
    transform: translateY(-4px);
}

/* Stagger fade-in for product cards */
.product-grid .product-card {
    animation: cardFadeIn 0.5s ease both;
}
.product-grid .product-card:nth-child(1) { animation-delay: 0s; }
.product-grid .product-card:nth-child(2) { animation-delay: 0.05s; }
.product-grid .product-card:nth-child(3) { animation-delay: 0.1s; }
.product-grid .product-card:nth-child(4) { animation-delay: 0.15s; }
.product-grid .product-card:nth-child(5) { animation-delay: 0.2s; }
.product-grid .product-card:nth-child(6) { animation-delay: 0.25s; }
.product-grid .product-card:nth-child(7) { animation-delay: 0.3s; }
.product-grid .product-card:nth-child(8) { animation-delay: 0.35s; }
@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pico-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateY(10px);
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.back-to-top svg {
    stroke: #fff;
}

/* ===== Enhanced Empty State ===== */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}
.empty-state__icon {
    margin-bottom: 1rem;
    color: #94a3b8;
}
.empty-state__icon svg {
    stroke: #94a3b8;
}
.empty-state h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.empty-state__tips {
    margin: 1.5rem auto;
    max-width: 300px;
    text-align: left;
}
.empty-state__tips ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
}
.empty-state__tips li {
    margin-bottom: 0.3rem;
    color: #64748b;
}
.empty-state__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    background: var(--pico-primary);
    color: #fff;
}
.btn:hover {
    opacity: 0.9;
    color: #fff;
}
.btn--outline {
    background: transparent;
    color: var(--pico-primary);
    border: 1px solid var(--pico-primary);
}
.btn--outline:hover {
    background: var(--pico-primary);
    color: #fff;
}

/* ===== Section Header with View All ===== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.section-header h2 {
    margin-bottom: 0;
}

/* ===== Cenový souboj (Game) ===== */
.game-page {
    padding: 1.5rem 0;
}

/* Top bar — title + stats in one row */
.game-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.game-topbar__title {
    font-size: 1.5rem;
    margin: 0;
    white-space: nowrap;
}

/* Stats bar — compact inline */
.game-stats {
    display: flex;
    gap: 0.5rem;
}
.game-stat {
    text-align: center;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.75rem;
    box-shadow: var(--shadow-sm);
    min-width: 55px;
}
.game-stat--streak {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.game-stat__label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    line-height: 1.2;
}
.game-stat__value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    transition: transform 0.2s;
}

/* Category filter — horizontal scroll */
.game-category-filter {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
}
.game-category-filter::-webkit-scrollbar { display: none; }
.game-cat-btn {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.game-cat-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
}
.game-cat-btn.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

/* Hint text */
.game-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 0 0.75rem;
}

/* Arena — two cards side by side always */
.game-arena {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 0.75rem;
}

.game-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.game-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-light);
}
.game-arena.revealed .game-card {
    cursor: default;
    transform: none;
}
.game-arena.revealed .game-card:hover {
    transform: none;
    box-shadow: var(--shadow);
}
.game-card.winner {
    border-color: #22c55e;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.15);
}
.game-card.loser {
    border-color: #ef4444;
    opacity: 0.85;
}
.game-card.selected::after {
    content: '👆';
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    font-size: 1.1rem;
}

.game-card__img-wrap {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: #f8fafc;
}
.game-card__img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.game-card__info {
    flex-grow: 1;
    min-height: 0;
}

.game-card__name {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card__shop {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.35rem;
}

.game-card__price-reveal {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--price);
    min-height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.game-arena.revealed .game-card__price-reveal {
    opacity: 1;
    transform: scale(1);
}

/* VS badge */
.game-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}
.game-vs span {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    letter-spacing: 0.05em;
}

/* Result message — compact inline bar */
.game-result {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
    margin-bottom: 0.5rem;
}
.game-result.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.game-result__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}
.game-result__icon {
    font-size: 1.5rem;
}
.game-result__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.game-next-btn {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.45rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.game-next-btn:hover {
    background: var(--brand-hover);
}

/* Loading — overlay on arena */
.game-loading {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(241,245,249,0.85);
    z-index: 10;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}
.game-arena {
    position: relative;
}
.game-loading.visible {
    display: flex;
}
.game-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid var(--border);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Share */
.game-share {
    text-align: center;
    margin-top: 0.5rem;
}
.game-share-btn {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.4rem 1rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}
.game-share-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* ===== Game — Mobile: fit on one screen ===== */
@media (max-width: 768px) {
    .game-page {
        padding: 0.75rem 0 0.5rem;
    }
    .game-topbar {
        margin-bottom: 0.5rem;
    }
    .game-topbar__title {
        font-size: 1.15rem;
    }
    .game-stat {
        padding: 0.2rem 0.5rem;
        min-width: 42px;
    }
    .game-stat__label {
        font-size: 0.55rem;
    }
    .game-stat__value {
        font-size: 1rem;
    }
    .game-hint {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    .game-arena {
        gap: 0.4rem;
    }
    .game-card {
        padding: 0.5rem;
        border-width: 2px;
    }
    .game-card__img-wrap {
        aspect-ratio: 4/5;
        margin-bottom: 0.35rem;
    }
    .game-card__name {
        font-size: 0.72rem;
        -webkit-line-clamp: 2;
        margin-bottom: 0.15rem;
    }
    .game-card__shop {
        font-size: 0.62rem;
        margin-bottom: 0.2rem;
    }
    .game-card__price-reveal {
        font-size: 1rem;
        min-height: 1.4rem;
    }
    .game-card.selected::after {
        top: 0.2rem;
        right: 0.2rem;
        font-size: 0.85rem;
    }
    .game-vs span {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    .game-result__content {
        padding: 0.4rem 0.75rem;
        gap: 0.35rem;
    }
    .game-result__icon {
        font-size: 1.2rem;
    }
    .game-result__text {
        font-size: 0.78rem;
    }
    .game-next-btn {
        padding: 0.35rem 0.9rem;
        font-size: 0.78rem;
    }
}

/* Extra small phones */
@media (max-width: 380px) {
    .game-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
    .game-card__img-wrap {
        aspect-ratio: 3/4;
    }
    .game-card__name {
        font-size: 0.65rem;
    }
}

/* Category Filters */
.category-filters {
    margin-bottom: 1.25rem;
}
.filters-toggle {
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    margin: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s;
}
.filters-toggle:hover,
.filters-toggle.active {
    border-color: var(--primary);
    color: var(--primary);
    background: #f0f7ff;
}
.filters-active {
    color: var(--accent);
    font-size: 0.6rem;
    vertical-align: super;
}
.filters-panel {
    display: none;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    margin-top: 0.75rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.filters-panel.open {
    display: flex;
}
.filters-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.filters-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.filters-price {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.filters-price span {
    color: #94a3b8;
}
.filters-input {
    width: 100px;
    padding: 0.4rem 0.6rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    background: #f8fafc;
}
.filters-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}
.filters-select {
    padding: 0.4rem 0.6rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    background: #f8fafc;
    min-width: 180px;
}
.filters-select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}
.filters-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.filters-apply {
    display: inline-block !important;
    width: auto !important;
    padding: 0.45rem 1.25rem !important;
    margin: 0 !important;
    background: #2563eb !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.filters-apply:hover {
    background: #1d4ed8 !important;
}
.filters-reset {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: none;
}
.filters-reset:hover {
    color: var(--primary);
}
@media (max-width: 576px) {
    .filters-panel {
        flex-direction: column;
    }
    .filters-input {
        width: 80px;
    }
    .filters-select {
        min-width: 100%;
    }
}

/* Autocomplete dropdown */
.nav-search { position: relative; }
.autocomplete-dropdown {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
    z-index: 1000; max-height: 360px; overflow-y: auto; margin-top: 4px;
}
.ac-item {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.6rem 0.75rem; text-decoration: none; color: var(--text);
    border-bottom: 1px solid var(--border); transition: background 0.15s;
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover { background: var(--brand-light); }
.ac-img { width: 40px; height: 40px; object-fit: contain; border-radius: 4px; flex-shrink: 0; }
.ac-name { flex: 1; font-size: 0.85rem; line-height: 1.3; }
.ac-price { font-size: 0.85rem; font-weight: 700; color: var(--price); white-space: nowrap; }

/* Wishlist button */
.wishlist-btn {
    background: none; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 0.6rem; cursor: pointer; transition: all 0.2s; display: flex;
    align-items: center; justify-content: center; width: auto !important;
}
.wishlist-btn:hover { border-color: #ef4444; }
.wishlist-btn:hover svg { stroke: #ef4444; }
.wishlist-btn.active svg { fill: #ef4444; stroke: #ef4444; }
.nav-wishlist { text-decoration: none; font-size: 0.9rem; white-space: nowrap; }

/* Shop detail header */
.shop-header {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
}
.shop-header__info { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.shop-header__logo { width: 48px; height: 48px; border-radius: var(--radius-sm); }
.shop-header__info h1 { margin: 0; font-size: 1.5rem; }
.shop-header__desc { color: var(--text-secondary); margin: 0.25rem 0 0; font-size: 0.9rem; }
.shop-header__meta { color: var(--text-muted); font-size: 0.85rem; margin: 0.25rem 0 0; }
.shop-header__cats { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.shop-header__cats .badge {
    background: var(--brand-light); color: var(--brand); padding: 0.2rem 0.6rem;
    border-radius: 999px; font-size: 0.75rem; font-weight: 500;
}

/* Trending searches */
.trending-searches { margin: 1.5rem 0; }
.trending-searches h2 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.trending-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.trending-tag {
    background: var(--brand-light); color: var(--brand); padding: 0.4rem 0.9rem;
    border-radius: 999px; font-size: 0.85rem; text-decoration: none;
    transition: all 0.2s; border: 1px solid transparent;
}
.trending-tag:hover { background: var(--brand); color: #fff; }

/* Lazy load fade-in */
.product-card__img img {
    opacity: 0; transition: opacity 0.3s ease;
}
.product-card__img img.loaded { opacity: 1; }

/* Compare button on product card */
.product-card__compare {
    position: absolute; top: 8px; right: 8px; z-index: 2;
    background: rgba(255,255,255,0.9); border: 1px solid var(--border);
    border-radius: 6px; padding: 4px 6px; cursor: pointer;
    font-size: 0.7rem; line-height: 1; opacity: 0; transition: opacity 0.2s;
}
.product-card:hover .product-card__compare { opacity: 1; }
.product-card__compare.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Compare page */
.compare-grid {
    display: grid; gap: 0; overflow-x: auto;
}
.compare-row { display: contents; }
.compare-cell {
    padding: 0.75rem; border-bottom: 1px solid var(--border);
    font-size: 0.9rem; min-width: 200px;
}
.compare-cell:first-child {
    font-weight: 600; color: var(--text-secondary); background: var(--brand-light);
    position: sticky; left: 0; z-index: 1; min-width: 140px;
}
.compare-cell img { max-width: 150px; max-height: 150px; object-fit: contain; }
.compare-actions { margin: 1.5rem 0; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Manufacturer price filter */
.mfg-price-filter {
    display: flex; gap: 0.5rem; align-items: center; margin: 0.75rem 0 1rem;
    flex-wrap: wrap;
}
.mfg-price-filter input {
    width: 100px; padding: 0.4rem 0.6rem; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.85rem; margin: 0 !important;
}
.mfg-price-filter button {
    background: var(--brand) !important; color: #fff !important;
    border: none !important; padding: 0.4rem 0.8rem; border-radius: var(--radius-sm);
    font-size: 0.85rem; cursor: pointer; width: auto !important;
    display: inline-block !important;
}
