/* Shop CMS — light theme: white/cream, soft shadows, blue #2563eb */
:root {
    --sh-primary: #2563eb;
    --sh-primary-hover: #1d4ed8;
    --sh-primary-light: #dbeafe;
    --sh-primary-glow: rgba(37, 99, 235, .18);
    --sh-bg: #faf9f7;
    --sh-bg-card: #ffffff;
    --sh-cream: #f5f3ef;
    --sh-text: #1e293b;
    --sh-text-muted: #64748b;
    --sh-border: #e2e8f0;
    --sh-border-soft: rgba(226, 232, 240, .8);
    --sh-success: #16a34a;
    --sh-danger: #dc2626;
    --sh-sale: #ea580c;
    --sh-radius: 10px;
    --sh-shadow: 0 4px 20px rgba(15, 23, 42, .06);
    --sh-shadow-lg: 0 12px 40px rgba(15, 23, 42, .08);
    --sh-font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sh-font);
    font-size: 14px;
    color: var(--sh-text);
    background: var(--sh-bg);
    line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sh-primary); text-decoration: none; }
a:hover { color: var(--sh-primary-hover); }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.sh-top-bar { position: sticky; top: 0; z-index: 110; }

/* Demo strip */
.sh-demo-strip {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 8px 14px; padding: 9px 16px;
    background: linear-gradient(90deg, var(--sh-primary-light) 0%, #eff6ff 50%, var(--sh-primary-light) 100%);
    color: var(--sh-primary-hover); font-size: 13px; font-weight: 600; text-align: center;
    border-bottom: 1px solid var(--sh-border);
}
.sh-demo-strip a { color: var(--sh-primary); font-weight: 700; text-decoration: underline; }
.sh-demo-strip-sep { opacity: .5; }
.sh-demo-strip-eco { font-weight: 600; font-size: 12px; }

/* Header */
.sh-header {
    background: var(--sh-bg-card);
    border-bottom: 1px solid var(--sh-border);
    box-shadow: var(--sh-shadow);
}
.sh-header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 16px;
    display: flex; align-items: center; min-height: 56px; gap: 12px;
}
.sh-logo {
    display: flex; align-items: center; gap: 10px;
    color: var(--sh-text); font-weight: 700; font-size: 1.25rem; text-decoration: none;
}
.sh-logo-icon {
    width: 36px; height: 36px; border-radius: var(--sh-radius);
    background: linear-gradient(135deg, var(--sh-primary), var(--sh-primary-hover));
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.sh-nav { display: none; gap: 4px; }
.sh-nav a {
    color: var(--sh-text-muted); padding: 8px 12px; border-radius: var(--sh-radius);
    font-weight: 500; text-decoration: none; transition: color .15s, background .15s;
}
.sh-nav a:hover, .sh-nav a.active { color: var(--sh-primary); background: var(--sh-primary-light); text-decoration: none; }
.sh-header-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sh-btn-outline {
    border: 1px solid var(--sh-border); background: var(--sh-bg-card); color: var(--sh-text);
    padding: 7px 12px; border-radius: var(--sh-radius); font-weight: 500; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-size: 13px; cursor: pointer;
}
.sh-btn-outline:hover, .sh-btn-outline.active { border-color: var(--sh-primary); color: var(--sh-primary); text-decoration: none; }
.sh-btn-primary {
    background: linear-gradient(135deg, var(--sh-primary), var(--sh-primary-hover));
    color: #fff; border: none; padding: 11px 20px; border-radius: var(--sh-radius);
    font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex;
    align-items: center; justify-content: center; gap: 8px; transition: transform .15s, box-shadow .15s;
}
.sh-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px var(--sh-primary-glow); color: #fff; text-decoration: none; }
.sh-btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.sh-btn-ghost {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px;
    color: var(--sh-text-muted); font-size: 13px; text-decoration: none; background: none; border: none; cursor: pointer;
}
.sh-btn-ghost:hover { color: var(--sh-primary); }
.sh-btn-block { width: 100%; }
.sh-btn-outline-dark {
    border: 1px solid var(--sh-border); color: var(--sh-text); padding: 10px 16px;
    border-radius: var(--sh-radius); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; background: var(--sh-bg-card);
}
.sh-btn-outline-dark:hover { border-color: var(--sh-primary); color: var(--sh-primary); text-decoration: none; }
.sh-btn-sm { padding: 7px 12px; font-size: 12px; }
.sh-btn-lg { padding: 13px 24px; font-size: 15px; }
.sh-btn-compact { padding: 7px 10px; }
.sh-cart-btn { position: relative; }
.sh-cart-badge {
    position: absolute; top: -6px; right: -6px;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--sh-sale); color: #fff; font-size: 10px; font-weight: 700;
    border-radius: 99px; display: inline-flex; align-items: center; justify-content: center;
}

/* Lang dropdown */
.sh-lang-dropdown { position: relative; }
.sh-lang-dropdown-btn {
    display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px;
    border: 1px solid var(--sh-border); border-radius: var(--sh-radius);
    background: var(--sh-bg-card); color: var(--sh-text); font-size: 13px; font-weight: 600; cursor: pointer;
}
.sh-lang-dropdown-menu {
    position: absolute; top: calc(100% + 6px); right: 0; min-width: 168px;
    list-style: none; margin: 0; padding: 6px; background: var(--sh-bg-card);
    border: 1px solid var(--sh-border); border-radius: var(--sh-radius); box-shadow: var(--sh-shadow-lg); z-index: 200;
}
.sh-lang-dropdown-menu a {
    display: flex; align-items: center; gap: 8px; padding: 8px 10px;
    color: var(--sh-text); border-radius: 6px; text-decoration: none;
}
.sh-lang-dropdown-menu a:hover, .sh-lang-dropdown-menu a.active { background: var(--sh-primary-light); color: var(--sh-primary); }
.sh-lang-dropdown.is-open .sh-lang-dropdown-btn { border-color: var(--sh-primary); }

/* Mobile menu */
.sh-menu-toggle {
    margin-left: auto; border: 1px solid var(--sh-border); background: var(--sh-bg-card);
    width: 40px; height: 40px; border-radius: var(--sh-radius); cursor: pointer; color: var(--sh-text);
    display: flex; align-items: center; justify-content: center;
}
.sh-menu-icon-close { display: none; }
.sh-header.nav-open .sh-menu-icon-open { display: none; }
.sh-header.nav-open .sh-menu-icon-close { display: inline; }
.sh-header-panel {
    position: fixed; top: 0; right: 0; width: min(320px, 90vw); height: 100vh;
    background: var(--sh-bg-card); box-shadow: var(--sh-shadow-lg); z-index: 130;
    transform: translateX(100%); transition: transform .25s ease;
    display: flex; flex-direction: column; padding: 16px; overflow-y: auto;
}
.sh-header.nav-open .sh-header-panel { transform: translateX(0); }
.sh-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.sh-panel-title { font-weight: 700; }
.sh-menu-close { border: none; background: none; font-size: 18px; cursor: pointer; color: var(--sh-text-muted); }
.sh-overlay {
    position: fixed; inset: 0; background: rgba(15, 23, 42, .35); z-index: 120;
    opacity: 0; transition: opacity .25s; pointer-events: none;
}
.sh-overlay.is-open { opacity: 1; pointer-events: auto; }
body.sh-nav-open { overflow: hidden; }

/* Hero */
.sh-hero {
    position: relative; padding: 48px 16px 56px; text-align: center;
    background: linear-gradient(180deg, #fff 0%, var(--sh-cream) 100%);
    border-bottom: 1px solid var(--sh-border-soft);
}
.sh-hero-compact { padding: 28px 16px 32px; }
.sh-hero-bg {
    position: absolute; inset: 0; opacity: .4;
    background: radial-gradient(circle at 30% 20%, var(--sh-primary-light) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, #fef3c7 0%, transparent 40%);
    pointer-events: none;
}
.sh-hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.sh-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin: 12px 0; color: var(--sh-text); }
.sh-hero p { color: var(--sh-text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 24px; }
.sh-demo-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
    background: var(--sh-primary-light); color: var(--sh-primary); border-radius: 99px;
    font-size: 12px; font-weight: 700;
}

/* Search form */
.sh-search {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end;
    max-width: 900px; margin: 0 auto; padding: 16px;
    background: var(--sh-bg-card); border-radius: var(--sh-radius); box-shadow: var(--sh-shadow);
    border: 1px solid var(--sh-border);
}
.sh-search-field { flex: 1 1 140px; text-align: left; }
.sh-search-field label { display: block; font-size: 11px; font-weight: 600; color: var(--sh-text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .04em; }
.sh-search-field input, .sh-search-field select {
    width: 100%; padding: 10px 12px; border: 1px solid var(--sh-border);
    border-radius: 8px; background: var(--sh-bg); color: var(--sh-text);
}
.sh-search-btn {
    background: var(--sh-primary); color: #fff; border: none; padding: 11px 20px;
    border-radius: 8px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
}
.sh-search-btn:hover { background: var(--sh-primary-hover); }

/* Container & sections */
.sh-container { max-width: 1200px; margin: 0 auto; padding: 32px 16px; }
.sh-section-tight { padding-top: 16px; }
.sh-section-last { padding-bottom: 48px; }
.sh-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.sh-section-head-center { justify-content: center; text-align: center; }
.sh-section-title { font-size: 1.5rem; margin: 0 0 6px; }
.sh-section-sub { color: var(--sh-text-muted); margin: 0; }
.sh-link-more { font-weight: 600; color: var(--sh-primary); white-space: nowrap; }

/* About script */
.sh-about-script { background: var(--sh-bg-card); border-top: 1px solid var(--sh-border); border-bottom: 1px solid var(--sh-border); }
.sh-about-script-inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.sh-about-script h2 { font-size: 1.5rem; margin-top: 0; }
.sh-about-use-label { font-weight: 600; margin-bottom: 8px; }
.sh-about-usecases { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.sh-about-usecase {
    padding: 6px 12px; background: var(--sh-cream); border: 1px solid var(--sh-border);
    border-radius: 99px; font-size: 12px; font-weight: 500;
    color: var(--sh-text); text-decoration: none; transition: border-color .2s, background .2s;
}
a.sh-about-usecase:hover { border-color: var(--sh-primary); background: var(--sh-primary-light); color: var(--sh-primary-hover); }
.sh-about-use-all { margin: 0 0 12px; font-size: 13px; font-weight: 600; }
.sh-about-use-all a { color: var(--sh-primary); }
.sh-about-features { list-style: none; padding: 0; margin: 16px 0; }
.sh-about-features li { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.sh-about-features i { color: var(--sh-success); }
.sh-about-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.sh-about-creds { font-size: 12px; color: var(--sh-text-muted); }
.sh-about-mock {
    background: var(--sh-cream); border-radius: var(--sh-radius); border: 1px solid var(--sh-border);
    box-shadow: var(--sh-shadow); overflow: hidden;
}
.sh-mock-header { display: flex; gap: 6px; padding: 12px; background: #fff; border-bottom: 1px solid var(--sh-border); }
.sh-mock-header span { width: 10px; height: 10px; border-radius: 50%; background: var(--sh-border); }
.sh-mock-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.sh-mock-product { height: 48px; background: linear-gradient(90deg, var(--sh-primary-light), #fff); border-radius: 8px; }

/* Stats */
.sh-stats-strip { background: var(--sh-bg-card); border-bottom: 1px solid var(--sh-border); }
.sh-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px 16px; }
.sh-stat-item { text-align: center; padding: 16px; background: var(--sh-cream); border-radius: var(--sh-radius); box-shadow: var(--sh-shadow); }
.sh-stat-item i { font-size: 1.25rem; color: var(--sh-primary); margin-bottom: 8px; }
.sh-stat-item strong { display: block; font-size: 1.5rem; }
.sh-stat-item span { font-size: 12px; color: var(--sh-text-muted); }

/* Product grid & cards */
.sh-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(12px, 2.5vw, 20px);
}
.sh-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--sh-bg-card);
    border: 1px solid var(--sh-border);
    border-radius: calc(var(--sh-radius) + 2px);
    overflow: hidden;
    box-shadow: var(--sh-shadow);
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.sh-product-card:hover {
    box-shadow: var(--sh-shadow-lg);
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, .25);
}
.sh-product-card.is-out-of-stock { opacity: .92; }
.sh-product-card.is-out-of-stock .sh-product-media img { filter: grayscale(.35); }

.sh-product-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(145deg, var(--sh-cream) 0%, #fff 100%);
    flex-shrink: 0;
}
.sh-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.sh-product-card:hover .sh-product-media img { transform: scale(1.05); }

.sh-product-badges {
    position: absolute;
    inset: 10px 10px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    pointer-events: none;
}
.sh-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 99px;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .12);
}
.sh-badge-sale { background: var(--sh-sale); color: #fff; }
.sh-badge-featured {
    width: 30px;
    height: 30px;
    padding: 0;
    margin-left: auto;
    background: var(--sh-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
}

.sh-product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 16px 16px;
    gap: 8px;
}
.sh-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.sh-cat-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--sh-primary);
    background: var(--sh-primary-light);
    padding: 4px 10px;
    border-radius: 99px;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sh-stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}
.sh-stock-pill i { font-size: 6px; }
.sh-stock-pill.in { color: var(--sh-success); }
.sh-stock-pill.out { color: var(--sh-danger); }

.sh-product-title {
    margin: 0;
    font-size: clamp(.95rem, 2vw, 1.05rem);
    line-height: 1.35;
}
.sh-product-title a {
    color: var(--sh-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sh-product-title a:hover { color: var(--sh-primary); }

.sh-product-excerpt {
    margin: 0;
    color: var(--sh-text-muted);
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.sh-product-bottom {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--sh-border-soft);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sh-price-wrap {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 10px;
}
.sh-price-current {
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 800;
    color: var(--sh-text);
    letter-spacing: -.02em;
}
.sh-product-card.is-out-of-stock .sh-price-current { color: var(--sh-text-muted); }
.sh-price-old {
    font-size: 13px;
    color: var(--sh-text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.sh-product-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: stretch;
}
.sh-btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: var(--sh-radius);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .15s, color .15s, transform .15s, box-shadow .15s;
    white-space: nowrap;
}
.sh-btn-card-primary {
    background: linear-gradient(135deg, var(--sh-primary), var(--sh-primary-hover));
    color: #fff;
}
.sh-btn-card-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px var(--sh-primary-glow);
}
.sh-btn-card-muted {
    background: var(--sh-cream);
    color: var(--sh-text-muted);
    border: 1px solid var(--sh-border);
    cursor: default;
}
.sh-btn-card-icon {
    width: 44px;
    min-width: 44px;
    padding: 0;
    background: var(--sh-bg);
    color: var(--sh-text-muted);
    border: 1px solid var(--sh-border);
}
.sh-btn-card-icon:hover {
    color: var(--sh-primary);
    border-color: var(--sh-primary);
    background: var(--sh-primary-light);
}

/* Legacy aliases (detail page badges) */
.sh-sale-badge, .sh-sale-badge-lg {
    position: absolute; top: 10px; left: 10px; padding: 4px 10px;
    background: var(--sh-sale); color: #fff; font-size: 11px; font-weight: 700; border-radius: 6px;
}
.sh-sale-badge-lg { top: 16px; left: 16px; padding: 6px 14px; border-radius: 8px; }
.sh-featured-badge {
    position: absolute; top: 10px; right: 10px; width: 28px; height: 28px;
    background: var(--sh-primary); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.sh-price-label { font-size: 11px; color: var(--sh-text-muted); text-transform: uppercase; }
.sh-price-value { font-size: 1.25rem; font-weight: 800; color: var(--sh-text); }
.sh-price-was { font-size: 13px; color: var(--sh-text-muted); text-decoration: line-through; margin-left: 8px; font-weight: 400; }

/* Categories */
.sh-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sh-cat-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 12px;
    background: var(--sh-bg-card); border: 1px solid var(--sh-border); border-radius: var(--sh-radius);
    box-shadow: var(--sh-shadow); text-decoration: none; color: var(--sh-text); transition: border-color .15s, transform .15s;
}
.sh-cat-card:hover { border-color: var(--sh-primary); transform: translateY(-2px); color: var(--sh-primary); text-decoration: none; }
.sh-cat-card i { font-size: 1.5rem; color: var(--sh-primary); }
.sh-cat-card strong { font-size: 14px; }
.sh-cat-card span { font-size: 12px; color: var(--sh-text-muted); }

/* Platform & steps */
.sh-platform-section, .sh-ecosystem-section { background: var(--sh-cream); border-top: 1px solid var(--sh-border); padding: 40px 0; }
.sh-platform-grid, .sh-ecosystem-grid, .sh-steps-grid, .sh-why-grid {
    display: grid; gap: 16px;
}
.sh-platform-card, .sh-step-card, .sh-why-item, .sh-ecosystem-card {
    background: var(--sh-bg-card); border: 1px solid var(--sh-border); border-radius: var(--sh-radius);
    padding: 20px; box-shadow: var(--sh-shadow);
}
.sh-platform-icon, .sh-step-icon, .sh-ecosystem-icon {
    width: 44px; height: 44px; border-radius: 10px; background: var(--sh-primary-light);
    color: var(--sh-primary); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 12px;
}
.sh-step-num {
    width: 28px; height: 28px; background: var(--sh-primary); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; margin-bottom: 8px;
}
.sh-step-card h3, .sh-platform-card h3, .sh-ecosystem-card h3, .sh-why-item h4 { margin: 0 0 8px; font-size: 1rem; }
.sh-ecosystem-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.sh-why-item i { font-size: 1.5rem; color: var(--sh-primary); margin-bottom: 10px; }

/* FAQ */
.sh-faq-list { display: flex; flex-direction: column; gap: 8px; }
.sh-faq-item {
    background: var(--sh-bg-card); border: 1px solid var(--sh-border); border-radius: var(--sh-radius);
    padding: 0 16px; box-shadow: var(--sh-shadow);
}
.sh-faq-item summary { padding: 14px 0; font-weight: 600; cursor: pointer; list-style: none; }
.sh-faq-item summary::-webkit-details-marker { display: none; }
.sh-faq-item p { margin: 0 0 14px; color: var(--sh-text-muted); }

/* Search layout */
.sh-search-layout { display: grid; gap: 24px; }
.sh-filters {
    background: var(--sh-bg-card); border: 1px solid var(--sh-border); border-radius: var(--sh-radius);
    padding: 20px; box-shadow: var(--sh-shadow); height: fit-content;
}
.sh-filters h3 { margin-top: 0; }
.sh-filter-group { margin-bottom: 14px; }
.sh-filter-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 4px; color: var(--sh-text-muted); }
.sh-filter-group select, .sh-filter-group input {
    width: 100%; padding: 8px 10px; border: 1px solid var(--sh-border); border-radius: 8px; background: var(--sh-bg);
}
.sh-results-header { margin-bottom: 20px; }
.sh-results-header h1 { font-size: 1.35rem; margin: 0 0 6px; }
.sh-results-meta { color: var(--sh-text-muted); font-size: 13px; }

/* Product detail */
.sh-breadcrumb { font-size: 13px; color: var(--sh-text-muted); margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.sh-breadcrumb a { color: var(--sh-text-muted); }
.sh-product-layout { display: grid; gap: 32px; margin-bottom: 32px; }
.sh-product-gallery { position: relative; background: var(--sh-bg-card); border-radius: var(--sh-radius); overflow: hidden; border: 1px solid var(--sh-border); box-shadow: var(--sh-shadow); }
.sh-product-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sh-sale-badge-lg { position: absolute; top: 16px; left: 16px; padding: 6px 14px; background: var(--sh-sale); color: #fff; font-weight: 700; border-radius: 8px; }
.sh-product-info h1 { margin: 12px 0; font-size: 1.75rem; }
.sh-price-lg { font-size: 1.75rem; color: var(--sh-text); }
.sh-price-was-lg { font-size: 1rem; color: var(--sh-text-muted); text-decoration: line-through; margin-left: 10px; }
.sh-product-stock { font-weight: 600; }
.sh-product-stock.in { color: var(--sh-success); }
.sh-product-stock.out { color: var(--sh-danger); }
.sh-qty-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.sh-qty-row input[type="number"] { width: 80px; padding: 10px; border: 1px solid var(--sh-border); border-radius: 8px; }
.sh-demo-note { font-size: 13px; color: var(--sh-text-muted); background: var(--sh-cream); padding: 12px; border-radius: 8px; }
.sh-specs-mini, .sh-specs-table { display: grid; gap: 8px; font-size: 13px; }
.sh-specs-mini div, .sh-specs-table div { display: flex; gap: 12px; }
.sh-specs-mini dt, .sh-specs-table dt { font-weight: 600; min-width: 100px; color: var(--sh-text-muted); }
.sh-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--sh-border); margin-bottom: 16px; }
.sh-tab {
    padding: 10px 16px; border: none; background: none; cursor: pointer;
    font-weight: 600; color: var(--sh-text-muted); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.sh-tab.active { color: var(--sh-primary); border-bottom-color: var(--sh-primary); }
.sh-tab-panel { color: var(--sh-text-muted); }
.sh-highlights { list-style: none; padding: 0; }
.sh-highlights li { display: flex; gap: 8px; margin-bottom: 6px; }
.sh-highlights i { color: var(--sh-success); }
.sh-related-section { margin-top: 40px; }

/* Cart */
.sh-cart-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.sh-cart-table { width: 100%; border-collapse: collapse; background: var(--sh-bg-card); border-radius: var(--sh-radius); overflow: hidden; box-shadow: var(--sh-shadow); }
.sh-cart-table th, .sh-cart-table td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--sh-border); }
.sh-cart-table th { background: var(--sh-cream); font-size: 12px; text-transform: uppercase; color: var(--sh-text-muted); }
.sh-cart-product-cell { display: flex; align-items: center; gap: 12px; }
.sh-cart-product-cell img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 1px solid var(--sh-border); }
.sh-qty-input { width: 64px; padding: 6px 8px; border: 1px solid var(--sh-border); border-radius: 6px; }
.sh-cart-footer { display: grid; gap: 24px; }
.sh-cart-summary {
    background: var(--sh-bg-card); border: 1px solid var(--sh-border); border-radius: var(--sh-radius);
    padding: 20px; box-shadow: var(--sh-shadow);
}
.sh-cart-total-row { display: flex; justify-content: space-between; font-size: 1.25rem; margin-bottom: 16px; }
.sh-checkout-note { font-size: 12px; color: var(--sh-text-muted); margin-top: 10px; }
.sh-cart-remove-form { margin: 0; }
.sh-cart-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* Alerts & empty */
.sh-alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.sh-alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.sh-form-card {
    background: var(--sh-bg-card); border: 1px solid var(--sh-border); border-radius: var(--sh-radius);
    padding: 32px; box-shadow: var(--sh-shadow); text-align: center;
}
.sh-empty-state i { font-size: 2.5rem; color: var(--sh-primary); margin-bottom: 12px; }
.sh-empty-sub { display: block; color: var(--sh-text-muted); margin-bottom: 16px; }

/* Footer */
.sh-footer { background: var(--sh-bg-card); border-top: 1px solid var(--sh-border); margin-top: 0; }
.sh-footer-cta { background: linear-gradient(135deg, var(--sh-primary-light), #eff6ff); border-bottom: 1px solid var(--sh-border); }
.sh-footer-cta-inner {
    max-width: 1200px; margin: 0 auto; padding: 28px 16px;
    display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.sh-footer-cta-text strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.sh-footer-cta-text span { color: var(--sh-text-muted); font-size: 13px; }
.sh-footer-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.sh-footer-inner { max-width: 1200px; margin: 0 auto; padding: 32px 16px 20px; }
.sh-footer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
.sh-footer-brand p { color: var(--sh-text-muted); font-size: 13px; }
.sh-footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--sh-text); text-decoration: none; margin-bottom: 10px; }
.sh-footer-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.sh-footer-badge { font-size: 11px; padding: 4px 10px; background: var(--sh-cream); border-radius: 99px; color: var(--sh-text-muted); }
.sh-footer h4 { margin: 0 0 12px; font-size: 14px; }
.sh-footer ul { list-style: none; padding: 0; margin: 0; }
.sh-footer li { margin-bottom: 8px; }
.sh-footer a { color: var(--sh-text-muted); font-size: 13px; }
.sh-footer a:hover { color: var(--sh-primary); }
.sh-footer-ecosystem { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; padding: 16px 0; border-top: 1px solid var(--sh-border); font-size: 13px; }
.sh-footer-eco-label { color: var(--sh-text-muted); font-weight: 600; }
.sh-footer-ecosystem a { padding: 4px 10px; background: var(--sh-cream); border-radius: 6px; }
.sh-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 16px; border-top: 1px solid var(--sh-border); font-size: 12px; color: var(--sh-text-muted); }
.sh-footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* Contact form (cms-contact prefix) */
.sh-page-contact main,
.sh-contact-page .sh-contact-inner { max-width: 720px; margin: 0 auto; }
.sh-contact-page .sh-form-card, .cms-contact-wrap { max-width: 640px; margin: 0 auto; }

/* Responsive — product grid */
@media (min-width: 400px) {
    .sh-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 600px) {
    .sh-stats-grid { grid-template-columns: repeat(4, 1fr); }
    .sh-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .sh-platform-grid, .sh-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .sh-why-grid { grid-template-columns: repeat(3, 1fr); }
    .sh-ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .sh-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sh-product-layout { grid-template-columns: 1fr 1fr; }
    .sh-search-layout { grid-template-columns: minmax(200px, 260px) 1fr; }
    .sh-cart-footer { grid-template-columns: 1fr 320px; }
    .sh-footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
    .sh-about-script-inner { grid-template-columns: 1.2fr 1fr; }
}
@media (min-width: 1024px) {
    .sh-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sh-search-layout .sh-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
    .sh-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sh-search-layout .sh-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
    .sh-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .sh-search-layout .sh-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 992px) {
    .sh-menu-toggle { display: none; }
    .sh-header-panel {
        position: static; transform: none; width: auto; height: auto;
        flex-direction: row; align-items: center; padding: 0; box-shadow: none;
        overflow: visible; flex: 1; justify-content: flex-end; gap: 16px;
    }
    .sh-panel-head, .sh-menu-close { display: none; }
    .sh-nav { display: flex; }
    .sh-platform-grid { grid-template-columns: repeat(3, 1fr); }
    .sh-ecosystem-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Small screens & touch */
@media (max-width: 767px) {
    .sh-container { padding: 24px max(16px, env(safe-area-inset-right)) 32px max(16px, env(safe-area-inset-left)); }
    .sh-hero { padding: 32px max(16px, env(safe-area-inset-right)) 40px max(16px, env(safe-area-inset-left)); }
    .sh-header-inner { padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right)); }
    .sh-search { flex-direction: column; align-items: stretch; }
    .sh-search-field { flex: 1 1 auto; }
    .sh-search-btn { width: 100%; min-height: 44px; justify-content: center; }
    .sh-section-head { flex-direction: column; align-items: flex-start; }
    .sh-filters { position: sticky; top: 56px; z-index: 5; }
    .sh-product-excerpt { -webkit-line-clamp: 1; }
    .sh-btn-card span { font-size: 12px; }
    .sh-cart-table thead { display: none; }
    .sh-cart-table tr { display: block; margin-bottom: 16px; border: 1px solid var(--sh-border); border-radius: 8px; padding: 12px; }
    .sh-cart-table td { display: flex; justify-content: space-between; border: none; padding: 6px 0; }
    .sh-cart-table td::before { content: attr(data-label); font-weight: 600; color: var(--sh-text-muted); font-size: 12px; }
    .sh-footer-cta-inner { flex-direction: column; text-align: center; }
    .sh-footer-cta-actions { width: 100%; justify-content: center; }
    .sh-footer-cta-actions .sh-btn-primary,
    .sh-footer-cta-actions .sh-btn-outline-dark { flex: 1; min-width: 140px; justify-content: center; min-height: 44px; }
}
@media (max-width: 399px) {
    .sh-product-grid { grid-template-columns: 1fr; }
    .sh-product-actions { grid-template-columns: 1fr; }
    .sh-btn-card-icon { width: 100%; }
    .sh-cat-grid { grid-template-columns: 1fr; }
    .sh-stats-grid { grid-template-columns: 1fr; }
    .sh-demo-strip { font-size: 12px; padding: 8px 12px; }
    .sh-header-actions .sh-btn-outline span { display: none; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .sh-product-content { padding: 12px 14px 14px; }
    .sh-btn-card { padding: 10px 12px; font-size: 12px; }
}

/* SEO vertical landing pages */
.sh-vertical-main { padding: 24px 16px 48px; max-width: 900px; }
.sh-vertical-crumb { font-size: 13px; color: var(--sh-text-muted); margin-bottom: 20px; }
.sh-vertical-crumb a { color: var(--sh-primary); }
.sh-vertical-hero {
    text-align: center; padding: 32px 20px; margin-bottom: 32px;
    background: linear-gradient(180deg, var(--sh-primary-light) 0%, transparent 100%);
    border-radius: 16px; border: 1px solid var(--sh-border);
}
.sh-vertical-hero-icon {
    width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
    background: rgba(37, 99, 235, .12); color: var(--sh-primary);
}
.sh-vertical-hero h1 { margin: 0 0 10px; font-size: 1.75rem; line-height: 1.2; }
.sh-vertical-subtitle { font-size: 1.05rem; color: var(--sh-text-muted); margin: 0 0 14px; }
.sh-vertical-intro { font-size: 15px; line-height: 1.65; max-width: 640px; margin: 0 auto 14px; }
.sh-vertical-region {
    margin: 0 auto 18px; font-size: 13px; font-weight: 600; color: var(--sh-primary);
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
    border-radius: 99px; background: rgba(37, 99, 235, .08); border: 1px solid rgba(37, 99, 235, .15);
}
.sh-vertical-cta-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sh-vertical-section { margin-bottom: 36px; }
.sh-vertical-section h2 { margin: 0 0 16px; font-size: 1.25rem; }
.sh-vertical-benefits { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .sh-vertical-benefits { grid-template-columns: repeat(2, 1fr); } }
.sh-vertical-benefit {
    padding: 18px; border-radius: 12px; border: 1px solid var(--sh-border); background: var(--sh-bg-card);
}
.sh-vertical-benefit h3 { margin: 0 0 8px; font-size: 1rem; }
.sh-vertical-benefit p { margin: 0; font-size: 13px; color: var(--sh-text-muted); }
.sh-vertical-features { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.sh-vertical-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.sh-vertical-features i { color: var(--sh-success); margin-top: 3px; }
.sh-faq-item {
    background: var(--sh-bg-card); border: 1px solid var(--sh-border); border-radius: 8px;
    margin-bottom: 8px; padding: 0 14px;
}
.sh-faq-item summary { cursor: pointer; min-height: 44px; display: flex; align-items: center; font-weight: 600; }
.sh-faq-item p { padding: 0 0 14px; margin: 0; font-size: 14px; color: var(--sh-text-muted); }
.sh-vertical-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) {
    .sh-vertical-links, .sh-solutions-grid { grid-template-columns: repeat(3, 1fr); }
}
.sh-vertical-link-card {
    display: flex; flex-direction: column; gap: 8px; padding: 16px;
    border-radius: 12px; border: 1px solid var(--sh-border); background: var(--sh-bg-card);
    text-decoration: none; color: inherit; transition: border-color .2s, transform .2s; min-height: 44px;
}
.sh-vertical-link-card:hover {
    border-color: var(--sh-primary); transform: translateY(-2px); text-decoration: none; color: inherit;
}
.sh-vertical-link-card i { font-size: 1.25rem; color: var(--sh-primary); }
.sh-vertical-link-card strong { font-size: 14px; }
.sh-vertical-link-card span { font-size: 12px; color: var(--sh-text-muted); }
.sh-vertical-cta-band {
    text-align: center; padding: 28px 20px; border-radius: 16px;
    background: rgba(37, 99, 235, .06); border: 1px solid rgba(37, 99, 235, .15);
}
.sh-vertical-cta-band p { margin: 0 0 14px; font-weight: 600; }
.sh-solutions-hub { padding-bottom: 48px; }
.sh-page-title { font-size: 1.75rem; margin: 0 0 8px; }
.sh-results-meta { color: var(--sh-text-muted); margin-bottom: 24px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .sh-product-card,
    .sh-product-media img,
    .sh-btn-card { transition: none; }
    .sh-product-card:hover { transform: none; }
    .sh-product-card:hover .sh-product-media img { transform: none; }
}