/* ============================================================
   StoreBridge — Standalone Marketplace Stylesheet
   Warm eCommerce aesthetic · Bootstrap 5 base
   Fonts: Poppins (headings) + DM Sans (body)
   ============================================================ */

/* Design tokens (palette, shadows, radii) now live in theme.css,
   which header.php loads before this file. Edit colours there. */

/* ── Base ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', serif;
    color: var(--brown);
}

a {
    color: var(--orange);
    text-decoration: none;
}

a:hover {
    color: var(--orange-dk);
}

/* ── Navbar ───────────────────────────────────────────────── */
.sh-navbar {
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--nav-shadow);
}

.sh-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}

.sh-logo {
    font-family: 'Poppins', serif;
    font-size: 1.45rem;
    color: var(--nav-fg);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.3px;
}

.sh-logo:hover {
    color: var(--nav-brand);
}

.sh-logo strong {
    color: var(--nav-brand);
}

.sh-logo-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.sh-tagline {
    font-size: 0.82rem;
    color: var(--nav-tagline);
    font-style: italic;
}

.sh-nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: 28px;
    margin-right: auto;
}

.sh-nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--nav-fg);
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.sh-nav-link:hover {
    color: var(--nav-brand);
}

.sh-nav-link.active {
    color: var(--nav-brand);
    border-bottom-color: var(--nav-brand);
}

@media (max-width: 560px) {
    .sh-nav-links {
        gap: 16px;
        margin-left: 14px;
    }
}

/* ── Hero ─────────────────────────────────────────────────── */
.sh-hero {
    background: var(--hero-gradient);
    color: var(--hero-fg);
    padding: 36px 0 0;
    position: relative;
    overflow: hidden;
}

.sh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sh-hero-inner {
    position: relative;
    padding-bottom: 28px;
}

.sh-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.sh-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 6px;
}

.sh-hero-title {
    font-family: 'Poppins', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

.sh-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.sh-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.sh-stat-num {
    font-family: 'Poppins', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.sh-stat-lbl {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.7;
    color: var(--white);
}

.sh-stat-divider {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 16px;
}

/* Pills inside hero */
.sh-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.sh-hero-pills .sh-pill {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
}

.sh-hero-pills .sh-pill:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.sh-hero-pills .sh-pill.active {
    background: var(--white);
    border-color: var(--white);
    color: var(--orange);
    font-weight: 600;
}

.sh-hero-pills .sh-pill-count {
    background: rgba(255, 255, 255, 0.2);
}

.sh-hero-pills .sh-pill.active .sh-pill-count {
    background: var(--orange-lt);
    color: var(--orange-dk);
}

.sh-hero-wave {
    position: relative;
    height: 56px;
    margin-top: -2px;
}

.sh-hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ── Homepage portal: two big entry cards ─────────────────── */
.sh-portal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.sh-portal-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.15s, transform 0.15s, border-color 0.15s;
}

.sh-portal-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-3px);
    color: #fff;
}

.sh-portal-icon {
    font-size: 2.4rem;
    line-height: 1;
}

.sh-portal-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.sh-portal-title {
    font-family: 'Poppins', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.sh-portal-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}

.sh-portal-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sh-portal-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.sh-portal-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
}

@media (max-width: 640px) {
    .sh-portal {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ── Main / Sections ──────────────────────────────────────── */
.sh-main {
    padding: 40px 0 80px;
}

.sh-section {
    margin-bottom: 48px;
}

.sh-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Category pills ───────────────────────────────────────── */
.sh-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sh-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    border-radius: 30px;
    background: var(--white);
    color: var(--brown-mid);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
}

.sh-pill:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-lt);
}

.sh-pill.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    font-weight: 600;
}

.sh-pill-count {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 1px 7px;
    font-size: 0.72rem;
}

.sh-pill.active .sh-pill-count {
    background: rgba(255, 255, 255, 0.25);
}

.sh-pill.sh-pill-empty {
    opacity: 0.45;
    pointer-events: none;
}

/* ── Count badge ──────────────────────────────────────────── */
.sh-count-badge {
    background: var(--warm-100);
    color: var(--brown-mid);
    border-radius: 20px;
    padding: 2px 12px;
    font-size: 0.8rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

/* ── Store grid ───────────────────────────────────────────── */
.sh-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 22px;
}

.sh-store-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.sh-store-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--warm-200);
}

.sh-store-card-top {
    background: var(--warm-100);
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.sh-store-logo {
    max-width: 140px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.sh-store-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dk));
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', serif;
}

.sh-store-card-body {
    padding: 16px 18px;
    flex: 1;
}

.sh-store-cat {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--orange);
    display: block;
    margin-bottom: 4px;
}

.sh-store-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--brown);
    font-family: 'Poppins', serif;
}

.sh-store-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.sh-store-url {
    font-size: 0.77rem;
    color: var(--text-muted);
    word-break: break-all;
    display: block;
}

.sh-store-url:hover {
    color: var(--orange);
}

.sh-store-card-footer {
    padding: 14px 18px;
    border-top: 1px solid var(--warm-100);
}

.sh-btn-products {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--orange);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background 0.15s, transform 0.1s;
}

.sh-btn-products:hover {
    background: var(--orange-dk);
    transform: scale(1.01);
    color: var(--white);
}

.sh-btn-products i {
    font-size: 1rem;
}

/* ── Products panel ───────────────────────────────────────── */
.sh-products-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--warm-100);
}

.sh-products-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-top: 3px;
}

.sh-close-btn {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.82rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.15s;
    white-space: nowrap;
}

.sh-close-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ── Spinner ──────────────────────────────────────────────── */
.sh-spinner-wrap {
    text-align: center;
    padding: 52px 0;
    color: var(--text-muted);
}

.sh-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid var(--warm-200);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: sh-spin 0.7s linear infinite;
    margin: 0 auto 14px;
}

@keyframes sh-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Filter bar ───────────────────────────────────────────── */
.sh-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: var(--warm-100);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
}

.sh-filter-bar label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown-mid);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.sh-filter-bar .form-select {
    max-width: 320px;
    border-color: var(--border);
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.sh-filter-bar .form-select:focus {
    border-color: var(--orange);
    box-shadow: var(--focus-ring);
}

.sh-filter-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: auto;
}

/* ── Products table ───────────────────────────────────────── */
.sh-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
}

.sh-products-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    background: var(--white);
}

.sh-products-table thead th {
    background: var(--warm-100);
    padding: 11px 14px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brown-mid);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
    vertical-align: middle;
}

.sh-products-table tbody td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--warm-100);
    vertical-align: middle;
    color: var(--text);
}

.sh-products-table tbody tr:last-child td {
    border-bottom: none;
}

.sh-products-table tbody tr:hover td {
    background: var(--surface-alt);
}

/* Column widths */
.col-img {
    width: 72px;
}

.col-name {
    min-width: 150px;
}

.col-price {
    width: 110px;
    white-space: nowrap;
}

.col-stock {
    width: 110px;
    white-space: nowrap;
}

.col-cats {
    min-width: 130px;
}

.col-link {
    width: 88px;
    text-align: center;
}

/* Thumbnail */
.sh-product-thumb {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    display: block;
    background: var(--warm-100);
}

.sh-product-name {
    font-weight: 600;
    color: var(--brown);
    font-size: 0.9rem;
}

.sh-product-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 4px 0 0;
    line-height: 1.45;
}

/* Pricing */
.sh-price-was {
    display: block;
    text-decoration: line-through;
    color: var(--text-faint);
    font-size: 0.77rem;
    line-height: 1.2;
}

.sh-price-now {
    font-weight: 700;
    color: var(--orange);
    font-size: 0.95rem;
}

.sh-price-regular {
    font-weight: 600;
    color: var(--text);
}

.sh-sale-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.68rem;
    font-weight: 700;
    margin-left: 4px;
    vertical-align: middle;
}

/* Stock */
.sh-stock {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sh-stock.in {
    background: var(--success-bg);
    color: var(--success);
}

.sh-stock.out {
    background: var(--danger-bg);
    color: var(--danger);
}

/* Category chips */
.sh-cat-chip {
    display: inline-block;
    background: var(--orange-lt);
    color: var(--orange-dk);
    border-radius: 20px;
    padding: 2px 9px;
    font-size: 0.72rem;
    font-weight: 500;
    margin: 2px 2px 2px 0;
    border: 1px solid var(--warm-200);
}

/* View link */
.sh-view-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    text-decoration: none;
}

.sh-view-link:hover {
    color: var(--orange-dk);
    text-decoration: underline;
}

/* ── Pagination ───────────────────────────────────────────── */
.sh-pagination-bar {
    display: flex;
    justify-content: center;
}

.sh-pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.sh-page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--brown-mid);
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sh-page-btn:hover:not([disabled]) {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.sh-page-btn.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    font-weight: 700;
}

.sh-page-btn[disabled] {
    opacity: 0.35;
    cursor: default;
}

.sh-page-ellipsis {
    padding: 0 4px;
    color: var(--text-muted);
}

/* ── Empty / Error ────────────────────────────────────────── */
.sh-empty,
.sh-error {
    text-align: center;
    padding: 56px 20px;
    color: var(--text-muted);
}

.sh-empty-icon,
.sh-error-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.sh-error {
    color: var(--danger);
}

.sh-error-icon::before {
    content: '⚠️';
}

/* ── Footer ───────────────────────────────────────────────── */

.cs-contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cta-fg);
    margin-bottom: 10px;
}

.cs-contact-sub {
    font-size: 0.95rem;
    color: var(--cta-fg);
    margin-bottom: 22px;
    line-height: 1.6;
}

.sh-footer {
    background: var(--footer-bg);
    padding: 24px 0;
}

.sh-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.sh-footer .sh-logo {
    color: var(--footer-fg);
}

.sh-footer .sh-logo:hover {
    color: var(--footer-accent);
}

.sh-footer strong {
    color: var(--footer-accent);
}

.sh-footer-copy {
    font-size: 0.8rem;
    color: var(--footer-fg-mute);
    font-style: italic;
}

/* ── Grid toolbar ─────────────────────────────────────────── */
.sh-grid-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sh-grid-toolbar-left {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    min-height: 20px;
}

.sh-grid-toolbar-left strong {
    color: var(--brown);
}

/* ── Search bar ───────────────────────────────────────────── */
.sh-search-wrap {
    position: relative;
    width: 260px;
    flex-shrink: 0;
}

.sh-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

.sh-search-input {
    width: 100%;
    padding: 8px 14px 8px 36px;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--text);
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.sh-search-input::placeholder {
    color: var(--c-brown-300);
}

.sh-search-input:focus {
    border-color: var(--orange);
    box-shadow: var(--focus-ring);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .sh-hero {
        padding-top: 28px;
    }

    .sh-hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .sh-hero-title {
        font-size: 1.6rem;
    }

    .sh-store-grid {
        grid-template-columns: 1fr 1fr;
    }

    .col-cats {
        display: none;
    }

    .sh-search-wrap {
        width: 100%;
    }

    .sh-grid-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .sh-store-grid {
        grid-template-columns: 1fr;
    }

    .col-stock {
        display: none;
    }

    .sh-filter-bar {
        padding: 10px;
    }

    .sh-filter-count {
        display: none;
    }
}

/* ── Cache status bar ─────────────────────────────────────── */
.sh-cache-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.sh-cache-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 500;
}

.sh-cache-badge.cached {
    background: var(--pending-bg);
    color: var(--pending-fg);
    border: 1px solid var(--pending-border);
}

.sh-cache-badge.cached i {
    color: var(--pending-icon);
}

.sh-cache-badge.live {
    background: var(--success-soft-bg);
    color: var(--success-soft-fg);
    border: 1px solid var(--success-soft-border);
}

.sh-cache-badge.live i {
    color: var(--success-strong);
}

.sh-cache-refresh {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 4px 13px;
    font-size: 0.8rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.15s;
}

.sh-cache-refresh:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ============================================================
   Marketing sections
   ============================================================ */

/* ── Shared section styles ────────────────────────────────── */
.sh-info-section {
    padding: 72px 0;
    position: relative;
}

.sh-info-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 52px;
}

.sh-info-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-lt);
    border: 1px solid var(--warm-200);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 12px;
}

.sh-info-title {
    font-family: 'Poppins', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 12px;
    line-height: 1.25;
}

.sh-info-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── How it works ─────────────────────────────────────────── */
.sh-how-it-works {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sh-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.sh-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.sh-step-icon {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.sh-step-num {
    font-family: 'Poppins', serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 8px;
}

.sh-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
}

.sh-step-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.sh-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 28px;
    color: var(--warm-200);
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ── Benefits ─────────────────────────────────────────────── */
.sh-benefits {
    background: var(--cream);
}

.sh-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sh-benefit-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.sh-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--warm-200);
}

.sh-benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--orange-lt);
    color: var(--orange);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid var(--warm-200);
}

.sh-benefit-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
}

.sh-benefit-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Platforms ────────────────────────────────────────────── */
.sh-platforms {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sh-platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.sh-platform-card {
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: transform 0.18s, box-shadow 0.18s;
}

.sh-platform-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.sh-platform-card.supported {
    border-color: var(--warm-200);
    background: var(--cream);
}

.sh-platform-card.coming {
    background: var(--surface-mute);
    opacity: 0.85;
}

.sh-platform-logo {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
}

.sh-platform-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
}

.sh-platform-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.sh-platform-badge {
    display: inline-block;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
}

.sh-platform-badge.live {
    background: var(--success-bg);
    color: var(--success);
}

.sh-platform-badge.soon {
    background: var(--pending-bg);
    color: var(--pending-fg);
    border: 1px solid var(--pending-border);
}

.sh-platform-badge.contact {
    background: var(--orange-lt);
    color: var(--orange-dk);
    border: 1px solid var(--warm-200);
}

/* ── CTA banner ───────────────────────────────────────────── */
.sh-cta-banner {
    background: var(--cta-gradient);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.sh-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sh-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.sh-cta-text {
    flex: 1;
    min-width: 260px;
}

.sh-cta-title {
    font-family: 'Poppins', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--cta-fg);
    margin-bottom: 10px;
    line-height: 1.25;
}

.sh-cta-sub {
    font-size: 0.95rem;
    color: var(--cta-fg-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

.sh-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.sh-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cta-btn-bg);
    color: var(--cta-btn-fg);
    border-radius: 8px;
    padding: 12px 26px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    white-space: nowrap;
}

.sh-cta-btn-primary:hover {
    background: var(--cta-btn-bg-hover);
    color: var(--cta-btn-fg);
    transform: translateY(-1px);
}

.sh-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cta-outline-bg);
    color: var(--cta-outline-fg);
    border: 1.5px solid var(--cta-outline-border);
    border-radius: 8px;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
}

.sh-cta-btn-outline:hover {
    background: var(--cta-outline-bg-hover);
    border-color: var(--cta-outline-border-hover);
    color: var(--cta-fg);
}

/* ── Marketing responsive ─────────────────────────────────── */
@media (max-width: 900px) {
    .sh-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sh-platform-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .sh-info-section {
        padding: 52px 0;
    }

    .sh-steps {
        flex-direction: column;
        align-items: center;
    }

    .sh-step {
        max-width: 100%;
        padding: 0 0 8px;
    }

    .sh-step-arrow {
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .sh-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .sh-cta-actions {
        justify-content: center;
    }

    .sh-cta-sub {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .sh-benefits-grid {
        grid-template-columns: 1fr;
    }

    .sh-info-header {
        margin-bottom: 36px;
    }
}