:root {
    --br-green: #009739;
    --br-green-dark: #006b2d;
    --br-green-deeper: #0a2e14;
    --br-yellow: #ffdf00;
    --br-yellow-light: #fff4b0;
    --br-blue: #002776;
    --br-white: #ffffff;
    --bg-app: #f4f8f3;
    --bg-panel: #ffffff;
    --text-main: #153122;
    --text-muted: #5d7161;
    --border-soft: #d6e5d3;
    --danger: #8f2332;
    --shadow-soft: 0 20px 60px rgba(0, 40, 18, 0.10);
    --shadow-strong: 0 24px 48px rgba(0, 30, 12, 0.18);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(255, 223, 0, 0.18), transparent 22%),
        linear-gradient(180deg, #f7fbf5 0%, #eff6ee 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 48px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    color: var(--br-white);
    background: linear-gradient(135deg, #004d21 0%, #006b2d 45%, #002776 100%);
    box-shadow: var(--shadow-soft);
}

.brand-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-mark {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: lowercase;
}

.brand-mark span {
    color: var(--br-yellow);
}

.brand-sub {
    font-size: 0.92rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.topnav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.topnav a,
.link-button {
    color: var(--br-white);
    font-weight: 600;
}

.link-button {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.page,
.dashboard-grid,
.stack,
.tenant-shell {
    display: grid;
    gap: 24px;
}

.hero,
.tenant-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
    gap: 24px;
}

.hero > div:first-child,
.tenant-hero > div:first-child,
.auth-card,
.panel,
.hero-card,
.stat-card,
.storefront-banner {
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.hero > div:first-child,
.tenant-hero > div:first-child {
    padding: 36px;
    background: linear-gradient(135deg, rgba(0, 107, 45, 0.98) 0%, rgba(0, 151, 57, 0.94) 62%, rgba(0, 39, 118, 0.92) 100%);
    color: var(--br-white);
}

.tenant-hero > div:first-child {
    background: linear-gradient(135deg, var(--tenant-secondary) 0%, var(--tenant-primary) 55%, var(--tenant-accent) 130%);
}

.hero-card,
.auth-card,
.panel,
.stat-card {
    padding: 28px;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 223, 0, 0.92) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.storefront-banner {
    min-height: 280px;
    padding: 36px;
    color: var(--br-white);
    display: grid;
    align-content: end;
    background-size: cover;
    background-position: center;
}

.store-identity {
    display: flex;
    align-items: center;
    gap: 20px;
}

.store-logo {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.15);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.85;
}

h1,
h2,
h3 {
    margin: 0 0 12px;
    line-height: 1.05;
}

h1 {
    font-size: clamp(2.1rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.lead {
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 58ch;
}

.muted {
    color: var(--text-muted);
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
}

.button.primary {
    color: #1b1b1b;
    background: var(--br-yellow);
}

.button.secondary {
    color: var(--br-white);
    background: var(--br-green);
}

.button.ghost {
    color: var(--text-main);
    border-color: var(--border-soft);
    background: rgba(255, 255, 255, 0.75);
}

.button.full {
    width: 100%;
}

.button.small {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.88rem;
}

.button.danger {
    color: #fff;
    background: #bb2d3b;
}

.pill,
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
}

.pill {
    color: var(--br-white);
    background: rgba(255, 255, 255, 0.12);
}

.badge {
    color: var(--br-green-dark);
    background: rgba(0, 151, 57, 0.12);
}

.flash {
    padding: 16px 20px;
    margin-bottom: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    font-weight: 600;
}

.flash.success {
    color: var(--br-green-dark);
    background: rgba(0, 151, 57, 0.1);
}

.flash.error {
    color: var(--danger);
    background: rgba(143, 35, 50, 0.08);
    border-color: rgba(143, 35, 50, 0.2);
}

.stack.narrow {
    width: min(860px, 100%);
}

.panel-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.stats-grid,
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.stat-card span {
    display: block;
    font-size: 0.94rem;
    color: var(--text-muted);
}

.stat-card strong {
    display: block;
    margin-top: 12px;
    font-size: 2rem;
}

.plan-card {
    display: grid;
    gap: 14px;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.featured-plan {
    border-color: rgba(255, 223, 0, 0.7);
    background: linear-gradient(180deg, rgba(255, 223, 0, 0.14) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--br-green-dark);
}

.plan-price small {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 24px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 14px 10px;
    text-align: left;
    border-bottom: 1px solid var(--border-soft);
    vertical-align: top;
}

.table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-list {
    padding-left: 18px;
    line-height: 1.8;
}

.auth-shell {
    display: grid;
    place-items: center;
    min-height: 60vh;
}

.auth-card {
    width: min(520px, 100%);
}

.form-grid {
    display: grid;
    gap: 18px;
}

.form-grid.two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.field input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    outline: none;
    font: inherit;
}

.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    outline: none;
    font: inherit;
    background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--br-green);
    box-shadow: 0 0 0 4px rgba(0, 151, 57, 0.12);
}

.field small {
    color: var(--text-muted);
    font-weight: 500;
}

.full-row {
    grid-column: 1 / -1;
}

.inline-link {
    color: var(--br-blue);
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.product-card,
.catalog-card {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.product-media,
.product-gallery {
    background: linear-gradient(180deg, #f1f7ef 0%, #ffffff 100%);
}

.product-media {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    padding: 18px;
}

.product-media img,
.product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.product-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border-radius: var(--radius-md);
    color: var(--br-green-dark);
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(0, 151, 57, 0.12), rgba(255, 223, 0, 0.18));
}

.product-placeholder.large {
    min-height: 420px;
}

.product-meta,
.product-detail {
    display: grid;
    gap: 12px;
    padding: 20px;
}

.product-tag {
    display: inline-flex;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--br-blue);
    font-size: 0.84rem;
    font-weight: 700;
    background: rgba(0, 39, 118, 0.08);
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.price-line strong {
    font-size: 1.35rem;
    color: var(--br-green-dark);
}

.price-line span {
    color: var(--text-muted);
    text-decoration: line-through;
}

.catalog-grid {
    display: grid;
    gap: 18px;
}

.catalog-card {
    padding: 20px;
}

.catalog-card-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.catalog-form-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.product-page {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
}

.product-gallery {
    padding: 18px;
}

.product-copy {
    color: var(--text-main);
    line-height: 1.75;
}

.topnav form {
    margin: 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 24px;
}

.order-summary {
    height: fit-content;
    display: grid;
    gap: 16px;
}

.summary-box {
    padding-top: 12px;
    border-top: 1px solid var(--border-soft);
}

.confirmation-panel {
    display: grid;
    gap: 24px;
}

.confirmation-grid,
.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.confirmation-grid div,
.summary-grid div {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: #f7fbf6;
    border: 1px solid var(--border-soft);
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline-item {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    background: #fbfdfb;
}

.legal-page {
    max-width: 860px;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .hero,
    .tenant-hero,
    .content-grid,
    .stats-grid,
    .plans-grid,
    .form-grid.two-columns,
    .products-grid,
    .product-page,
    .catalog-form-grid,
    .checkout-layout,
    .confirmation-grid,
    .summary-grid {
        grid-template-columns: 1fr;
    }

    .topbar {
        padding: 18px;
    }

    .catalog-card-header,
    .store-identity {
        flex-direction: column;
        align-items: start;
    }

    .store-logo {
        width: 72px;
        height: 72px;
    }
}
.table-subtitle {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.summary-line,
.summary-product {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
}

.summary-line.total {
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
}

.summary-product {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-soft);
}

.stacked-actions {
    display: grid;
    gap: 12px;
}

.inline-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.inline-form input {
    max-width: 92px;
}

.subtle-panel {
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: #f7fbf6;
    border: 1px solid var(--border-soft);
}

.shipping-options {
    display: grid;
    gap: 12px;
}

.shipping-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: #fbfdfb;
}

.shipping-option input {
    margin-top: 3px;
}
.readonly-card {
    padding: 18px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: #f7fbf6;
}

.readonly-card strong {
    font-size: 1.4rem;
    color: var(--br-green-dark);
}

.product-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.product-thumb {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    background: #f4f8f3;
}

.option-groups {
    display: grid;
    gap: 16px;
}

.option-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.option-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #fbfdfb;
    font-weight: 700;
}
.product-purchase-form {
    margin-top: 8px;
}

.freight-box {
    display: grid;
    gap: 16px;
    margin-top: 8px;
}

.freight-form-row {
    display: flex;
    align-items: end;
    gap: 12px;
    flex-wrap: wrap;
}

.freight-summary {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: #fff;
}

.compact-options .shipping-option {
    grid-template-columns: 1fr auto;
}

.static-option {
    cursor: default;
}
/* onboarding-branding-enhancements */
.single-plan-card {
    gap: 22px;
}

.plan-highlight-head,
.feature-columns,
.branding-preview-grid,
.field-inline,
.hint-row,
.palette-grid,
.palette-card,
.color-field {
    display: flex;
}

.plan-highlight-head,
.feature-columns,
.branding-preview-grid {
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.feature-columns > * {
    flex: 1 1 240px;
}

.plan-highlight,
.compact-plan-highlight {
    padding: 22px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 223, 0, 0.6);
    background: linear-gradient(180deg, rgba(255, 223, 0, 0.16) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.branding-preview-grid {
    align-items: stretch;
}

.asset-card {
    gap: 14px;
}

.asset-card,
.palette-guide {
    display: grid;
    gap: 12px;
}

.asset-preview {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 1px solid var(--border-soft);
    background: #f7fbf6;
}

.asset-preview-logo {
    aspect-ratio: 1 / 1;
    max-width: 220px;
}

.asset-preview-banner {
    aspect-ratio: 16 / 6;
}

.asset-placeholder {
    display: grid;
    place-items: center;
    min-height: 160px;
    padding: 18px;
    border: 1px dashed var(--border-soft);
    border-radius: var(--radius-md);
    background: #f7fbf6;
    color: var(--text-muted);
    text-align: center;
}

.asset-placeholder-banner {
    min-height: 200px;
}

.palette-grid {
    gap: 12px;
    flex-wrap: wrap;
}

.palette-card {
    align-items: center;
    gap: 12px;
    min-width: 180px;
    padding: 14px 16px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: #fff;
}

.palette-card small {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
}

.palette-swatch,
.color-preview {
    display: inline-block;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.palette-swatch {
    width: 26px;
    height: 26px;
}

.color-field {
    align-items: center;
    gap: 12px;
}

.color-preview {
    width: 22px;
    height: 22px;
}

.color-picker {
    width: 56px;
    min-width: 56px;
    height: 48px;
    padding: 4px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    background: #fff;
}

.field-inline {
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.field-inline input {
    flex: 1 1 280px;
}

.hint-row {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.hint-chip {
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(0, 151, 57, 0.2);
    border-radius: 999px;
    background: rgba(0, 151, 57, 0.08);
    color: var(--br-green-dark);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.hint-chip:hover {
    background: rgba(255, 223, 0, 0.24);
}

@media (max-width: 900px) {
    .plan-highlight-head,
    .feature-columns,
    .branding-preview-grid,
    .field-inline,
    .color-field {
        display: grid;
    }

    .asset-preview-logo {
        max-width: 100%;
    }
}
/* marketing-home-refresh */
.marketing-hero,
.marketing-section,
.hero-copy,
.hero-showcase,
.hero-proof-grid,
.browser-grid,
.marketing-benefits-grid,
.subdomain-grid,
.journey-grid,
.showcase-grid,
.showcase-store-body,
.showcase-meta,
.final-cta-panel,
.hero-badges {
    display: grid;
}

.marketing-hero,
.marketing-section {
    gap: 28px;
}

.hero-spotlight {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 26px;
    padding: 36px;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(0, 107, 45, 0.12);
    background:
        radial-gradient(circle at top right, rgba(255, 223, 0, 0.28), transparent 24%),
        radial-gradient(circle at bottom left, rgba(0, 39, 118, 0.16), transparent 32%),
        linear-gradient(135deg, rgba(0, 88, 40, 0.98) 0%, rgba(0, 151, 57, 0.94) 56%, rgba(0, 39, 118, 0.92) 100%);
    color: var(--br-white);
    box-shadow: 0 28px 80px rgba(0, 53, 23, 0.22);
}

.hero-spotlight::before,
.hero-spotlight::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-spotlight::before {
    width: 220px;
    height: 220px;
    right: -70px;
    top: -70px;
    background: rgba(255, 223, 0, 0.22);
    filter: blur(8px);
}

.hero-spotlight::after {
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -80px;
    background: rgba(255, 255, 255, 0.10);
}

.hero-copy,
.hero-showcase {
    position: relative;
    z-index: 1;
    gap: 18px;
}

.hero-badges {
    grid-auto-flow: column;
    justify-content: start;
    gap: 10px;
}

.marketing-pill {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.hero-proof-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.hero-proof-card span,
.hero-proof-card small {
    display: block;
}

.hero-proof-card strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 1.6rem;
}

.hero-showcase {
    align-content: center;
}

.showcase-browser {
    position: relative;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 26px 60px rgba(0, 19, 45, 0.24);
}

.floating-card {
    animation: floatCard 6s ease-in-out infinite;
}

.browser-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 39, 118, 0.24);
}

.browser-address {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--br-blue);
    font-weight: 700;
    background: rgba(0, 39, 118, 0.08);
}

.browser-body {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.browser-banner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border-radius: 22px;
    color: var(--br-white);
    background: linear-gradient(135deg, #006b2d 0%, #009739 55%, #002776 100%);
}

.browser-banner p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.85);
}

.browser-badge {
    padding: 8px 12px;
    border-radius: 999px;
    color: #1b1b1b;
    font-weight: 800;
    background: var(--br-yellow);
}

.browser-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.browser-grid article {
    padding: 14px;
    border-radius: 18px;
    background: #f5faf4;
    border: 1px solid var(--border-soft);
}

.browser-grid span,
.browser-grid strong {
    display: block;
}

.browser-grid span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.browser-grid strong {
    margin-top: 8px;
    font-size: 0.98rem;
}

.floating-note {
    max-width: 260px;
    padding: 14px 16px;
    border-radius: 18px;
    font-weight: 700;
    color: #0f281b;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.note-top {
    justify-self: start;
    margin-left: 12px;
    animation: floatNote 7s ease-in-out infinite;
}

.note-bottom {
    justify-self: end;
    margin-right: 8px;
    animation: floatNote 8s ease-in-out infinite reverse;
}

.marketing-benefits-grid,
.subdomain-grid,
.journey-grid,
.showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.benefit-card,
.subdomain-card,
.journey-step,
.showcase-store-card,
.final-cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--border-soft);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.benefit-card,
.subdomain-card,
.journey-step {
    padding: 22px;
}

.benefit-card strong,
.subdomain-card strong,
.journey-step strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.glow-card {
    background: linear-gradient(180deg, rgba(255, 223, 0, 0.18) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.highlight-benefit {
    background: linear-gradient(135deg, rgba(0, 151, 57, 0.10), rgba(0, 39, 118, 0.08));
}

.featured-subdomain {
    color: var(--br-white);
    background: linear-gradient(135deg, #005f27 0%, #009739 58%, #002776 100%);
}

.featured-subdomain p,
.featured-subdomain .eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

.journey-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--br-blue);
    background: rgba(255, 223, 0, 0.52);
}

.showcase-store-card {
    display: grid;
}

.showcase-store-banner {
    display: flex;
    align-items: end;
    gap: 16px;
    min-height: 180px;
    padding: 22px;
    color: var(--br-white);
    background: linear-gradient(135deg, #004d21 0%, #006b2d 48%, #002776 100%);
    background-size: cover;
    background-position: center;
}

.showcase-store-banner strong,
.showcase-store-banner p {
    display: block;
}

.showcase-store-banner p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.showcase-store-body {
    gap: 14px;
    padding: 22px;
}

.showcase-meta {
    gap: 8px;
}

.showcase-meta span {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.86rem;
    color: var(--br-green-dark);
    background: rgba(0, 151, 57, 0.10);
}

.final-cta-panel {
    grid-template-columns: minmax(0, 1.4fr) auto;
    align-items: center;
    gap: 18px;
    padding: 34px;
    color: var(--br-white);
    background: linear-gradient(135deg, #005421 0%, #007a31 52%, #002776 100%);
}

.final-cta-panel::before {
    content: '';
    position: absolute;
    inset: auto -50px -90px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(255, 223, 0, 0.18);
}

.final-cta-panel > * {
    position: relative;
    z-index: 1;
}

.final-cta-panel .lead,
.final-cta-panel .eyebrow {
    color: rgba(255, 255, 255, 0.88);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatNote {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 900px) {
    .hero-spotlight,
    .hero-proof-grid,
    .browser-grid,
    .final-cta-panel,
    .hero-badges {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        grid-auto-flow: row;
    }

    .browser-banner,
    .showcase-store-banner {
        flex-direction: column;
        align-items: start;
    }

    .floating-note {
        max-width: none;
        justify-self: stretch;
        margin: 0;
    }
}
/* tenant-ecommerce-refresh */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tenant-body {
    background:
        radial-gradient(circle at top right, rgba(255, 223, 0, 0.22), transparent 18%),
        linear-gradient(180deg, #f7fbf7 0%, #eef6f1 100%);
}

.tenant-shell-wrapper {
    width: min(1320px, calc(100% - 28px));
}

.tenant-topbar {
    position: sticky;
    top: 14px;
    z-index: 30;
    display: grid;
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px;
    border-radius: 30px;
    border: 1px solid rgba(0, 39, 118, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 60px rgba(0, 42, 18, 0.12);
    backdrop-filter: blur(12px);
}

.tenant-topbar-shell,
.tenant-brand-link,
.tenant-header-actions,
.tenant-search-field,
.tenant-cart-button,
.tenant-menu-row,
.tenant-menu-links,
.tenant-trust-strip,
.tenant-product-heading,
.tenant-product-benefits,
.tenant-card-footer,
.tenant-breadcrumbs {
    display: flex;
}

.tenant-topbar-shell {
    align-items: center;
    gap: 18px;
    justify-content: space-between;
}

.tenant-brand-link {
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.tenant-brand-logo,
.tenant-brand-fallback {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--tenant-secondary), var(--tenant-primary));
    color: #fff;
}

.tenant-brand-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 800;
}

.tenant-brand-copy {
    display: grid;
    gap: 5px;
}

.tenant-brand-copy strong {
    font-size: 1.18rem;
}

.tenant-brand-copy span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.tenant-search-form {
    flex: 1 1 420px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tenant-search-field {
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #f9fcf8;
}

.tenant-search-field svg,
.tenant-cart-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.tenant-search-field input {
    flex: 1 1 auto;
    min-height: 48px;
    border: 0;
    outline: none;
    background: transparent;
    font: inherit;
}

.tenant-header-actions {
    align-items: center;
    gap: 12px;
}

.tenant-support-link {
    font-weight: 700;
    color: var(--tenant-secondary);
}

.tenant-cart-button {
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
    color: #0f281b;
    background: linear-gradient(135deg, rgba(255, 223, 0, 0.95), rgba(255, 247, 190, 0.95));
    box-shadow: 0 14px 28px rgba(255, 223, 0, 0.22);
}

.tenant-cart-button.is-active {
    background: linear-gradient(135deg, var(--tenant-primary), var(--tenant-secondary));
    color: #fff;
}

.tenant-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 39, 118, 0.86);
}

.tenant-cart-button.is-active .tenant-cart-count {
    background: rgba(255, 255, 255, 0.18);
}

.tenant-menu-shell {
    display: grid;
    gap: 8px;
    padding-top: 4px;
    border-top: 1px solid rgba(0, 39, 118, 0.08);
}

.tenant-menu-row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.tenant-menu-label {
    min-width: 0;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #738676;
}

.tenant-menu-links {
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 6px;
    white-space: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tenant-menu-links::-webkit-scrollbar {
    display: none;
}

.tenant-menu-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: #476154;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tenant-menu-link:hover {
    color: var(--tenant-secondary);
    background: rgba(0, 151, 57, 0.08);
    border-color: rgba(0, 107, 45, 0.12);
    transform: translateY(-1px);
}

.tenant-menu-link.is-active {
    color: var(--tenant-secondary);
    background: rgba(0, 151, 57, 0.12);
    border-color: rgba(0, 107, 45, 0.16);
}

.tenant-menu-row-brands .tenant-menu-link {
    font-size: 0.8rem;
    letter-spacing: 0.01em;
}

.tenant-commerce-shell {
    gap: 22px;
}

.tenant-commerce-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 22px;
    min-height: 360px;
    padding: 34px;
    overflow: hidden;
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 223, 0, 0.25), transparent 25%),
        linear-gradient(135deg, rgba(0, 77, 33, 0.98) 0%, rgba(0, 151, 57, 0.92) 56%, rgba(0, 39, 118, 0.88) 100%);
    background-size: cover;
    background-position: center;
    box-shadow: 0 28px 64px rgba(0, 50, 22, 0.18);
}

.tenant-commerce-copy,
.tenant-commerce-side,
.tenant-featured-grid,
.tenant-active-filters,
.tenant-products-grid,
.tenant-filter-form,
.tenant-filter-panel,
.tenant-product-page,
.tenant-product-detail,
.tenant-highlight-copy {
    display: grid;
}

.tenant-commerce-copy,
.tenant-commerce-side {
    position: relative;
    z-index: 1;
    gap: 16px;
}

.tenant-commerce-description {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.tenant-commerce-side {
    align-content: end;
    gap: 14px;
}

.tenant-metric-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.tenant-metric-card span,
.tenant-metric-card strong {
    display: block;
}

.tenant-metric-card strong {
    margin-top: 10px;
    font-size: 1.9rem;
}

.tenant-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.tenant-trust-strip article {
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.tenant-trust-strip strong,
.tenant-trust-strip span {
    display: block;
}

.tenant-trust-strip strong {
    margin-bottom: 8px;
}

.tenant-filter-panel {
    gap: 18px;
}

.tenant-filter-form {
    grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr) auto;
    gap: 16px;
    align-items: end;
}

.tenant-filter-actions {
    margin-top: 0;
}

.tenant-active-filters {
    grid-auto-flow: column;
    justify-content: start;
    gap: 10px;
}

.filter-chip,
.tenant-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
}

.filter-chip {
    color: var(--tenant-secondary);
    background: rgba(0, 151, 57, 0.10);
}

.tenant-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tenant-highlight-card,
.tenant-product-card {
    position: relative;
    display: grid;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--border-soft);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.tenant-highlight-card {
    grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1fr);
}

.tenant-highlight-media {
    min-height: 100%;
}

.tenant-highlight-copy {
    gap: 14px;
    padding: 24px;
}

.tenant-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tenant-product-card .product-media {
    position: relative;
}

.tenant-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    color: #112413;
    background: rgba(255, 223, 0, 0.92);
}

.tenant-product-meta-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.tenant-card-footer {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
}

.tenant-card-footer span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.tenant-breadcrumbs {
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-weight: 700;
}

.tenant-breadcrumbs a {
    color: var(--tenant-secondary);
}

.tenant-product-page {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.tenant-product-gallery {
    min-height: 100%;
}

.tenant-product-detail {
    gap: 18px;
}

.tenant-product-heading {
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tenant-product-benefits {
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tenant-product-benefits span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--tenant-secondary);
    font-weight: 700;
    background: rgba(0, 151, 57, 0.10);
}

.tenant-freight-box {
    background: linear-gradient(180deg, #f7fbf6 0%, #ffffff 100%);
}

.tenant-freight-top,
.tenant-freight-highlight,
.tenant-freight-highlight-head,
.tenant-shipping-option-head,
.tenant-shipping-option-meta,
.tenant-purchase-summary-top,
.tenant-selected-shipping-inline,
.tenant-sticky-buy-copy {
    display: flex;
}

.tenant-freight-top,
.tenant-freight-highlight,
.tenant-purchase-summary-top {
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.tenant-freight-saved,
.tenant-freight-highlight-copy,
.tenant-shipping-option-copy,
.tenant-shipping-option-price,
.tenant-purchase-summary,
.tenant-sticky-buy-bar {
    display: grid;
}

.tenant-freight-saved {
    gap: 4px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(0, 107, 45, 0.12);
    background: rgba(255, 255, 255, 0.86);
}

.tenant-freight-saved span {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tenant-freight-saved strong {
    color: var(--tenant-secondary);
    font-size: 1rem;
}

.tenant-freight-highlight {
    padding: 18px;
    background: linear-gradient(135deg, rgba(0, 151, 57, 0.08), rgba(255, 223, 0, 0.14));
}

.tenant-freight-highlight-copy {
    gap: 8px;
}

.tenant-freight-highlight-head,
.tenant-shipping-option-head {
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tenant-summary-kicker,
.tenant-shipping-badge,
.tenant-zip-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.tenant-summary-kicker,
.tenant-zip-pill {
    color: var(--tenant-secondary);
    background: rgba(255, 255, 255, 0.88);
}

.tenant-shipping-badge {
    color: #3d2e00;
    background: rgba(255, 223, 0, 0.9);
}

.tenant-freight-highlight-copy strong,
.tenant-selected-shipping-inline strong {
    font-size: 1.08rem;
}

.tenant-freight-highlight-copy small,
.tenant-selected-shipping-inline span,
.tenant-shipping-option-price small {
    color: var(--text-muted);
    line-height: 1.5;
}

.tenant-freight-highlight-price {
    display: grid;
    gap: 6px;
    justify-items: end;
    text-align: right;
}

.tenant-freight-highlight-price span {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tenant-freight-highlight-price strong {
    font-size: 1.5rem;
    color: var(--tenant-secondary);
}

.tenant-shipping-options {
    gap: 14px;
}

.tenant-shipping-option {
    gap: 16px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.tenant-shipping-option:hover {
    border-color: rgba(0, 107, 45, 0.26);
    transform: translateY(-1px);
}

.tenant-shipping-option.is-selected {
    border-color: rgba(0, 107, 45, 0.3);
    background: linear-gradient(135deg, rgba(0, 151, 57, 0.08), rgba(255, 255, 255, 0.98));
    box-shadow: 0 14px 28px rgba(0, 107, 45, 0.08);
}

.tenant-shipping-option-copy {
    gap: 10px;
}

.tenant-shipping-option-meta {
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.tenant-shipping-option-meta span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.tenant-shipping-option-price {
    gap: 6px;
    justify-items: end;
    text-align: right;
}

.tenant-shipping-option-price strong {
    font-size: 1.18rem;
    color: var(--tenant-secondary);
}

.tenant-purchase-summary {
    gap: 16px;
    margin-top: 4px;
    border: 1px solid rgba(0, 107, 45, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 246, 0.96));
}

.tenant-purchase-summary-lines {
    display: grid;
    gap: 12px;
}

.tenant-purchase-summary .summary-line strong {
    font-size: 1.06rem;
    color: var(--tenant-secondary);
}

.tenant-purchase-summary .summary-line.total strong {
    font-size: 1.45rem;
}

.tenant-selected-shipping-inline {
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 107, 45, 0.12);
    background: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
}

.tenant-sticky-buy-bar {
    display: none;
}

@media (max-width: 1100px) {
    .tenant-topbar-shell,
    .tenant-filter-form,
    .tenant-highlight-card,
    .tenant-products-grid,
    .tenant-trust-strip,
    .tenant-product-page,
    .tenant-featured-grid {
        grid-template-columns: 1fr;
    }

    .tenant-topbar-shell,
    .tenant-menu-row {
        align-items: start;
        flex-direction: column;
    }

    .tenant-search-form,
    .tenant-header-actions {
        width: 100%;
    }

    .tenant-header-actions {
        justify-content: space-between;
    }
}

@media (max-width: 900px) {
    .tenant-commerce-hero,
    .tenant-trust-strip,
    .tenant-featured-grid,
    .tenant-products-grid,
    .tenant-product-page {
        grid-template-columns: 1fr;
    }

    .tenant-search-form,
    .tenant-topbar-shell,
    .tenant-card-footer,
    .tenant-breadcrumbs,
    .tenant-product-benefits {
        flex-direction: column;
        align-items: stretch;
    }

    .tenant-active-filters {
        grid-auto-flow: row;
    }

    .tenant-freight-top,
    .tenant-freight-highlight,
    .tenant-purchase-summary-top,
    .tenant-selected-shipping-inline {
        align-items: start;
        flex-direction: column;
    }

    .tenant-freight-highlight-price,
    .tenant-shipping-option-price {
        justify-items: start;
        text-align: left;
    }
}/* tenant-category-sidebar-refresh */
.tenant-menu-shell-brands {
    justify-items: center;
}

.tenant-menu-links-centered {
    justify-content: center;
    width: 100%;
}

.tenant-storefront-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.tenant-storefront-main {
    min-width: 0;
}

.tenant-category-sidebar {
    position: sticky;
    top: 132px;
    display: grid;
    gap: 18px;
}

.tenant-category-nav {
    display: grid;
    gap: 10px;
}

.tenant-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 107, 45, 0.12);
    background: #fbfdfb;
    color: #2f4a3a;
    font-size: 0.95rem;
    font-weight: 700;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tenant-category-link:hover {
    color: var(--tenant-secondary);
    border-color: rgba(0, 107, 45, 0.2);
    background: rgba(0, 151, 57, 0.06);
    transform: translateX(2px);
}

.tenant-category-link.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--tenant-secondary), var(--tenant-primary));
    box-shadow: 0 16px 30px rgba(0, 107, 45, 0.18);
}

.tenant-category-sidebar-note {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(0, 151, 57, 0.08), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(0, 107, 45, 0.10);
}

.tenant-category-sidebar-note strong {
    font-size: 1rem;
}

.tenant-category-sidebar-note p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.tenant-filter-form-compact {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.tenant-filter-form-compact .field {
    min-width: 0;
}

@media (max-width: 1100px) {
    .tenant-menu-links-centered {
        justify-content: flex-start;
    }

    .tenant-storefront-layout {
        grid-template-columns: 1fr;
    }

    .tenant-category-sidebar {
        position: static;
    }

    .tenant-category-nav {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 900px) {
    .tenant-filter-form-compact,
    .tenant-category-nav {
        grid-template-columns: 1fr;
    }
}
/* tenant-featured-card-fix */
.tenant-highlight-card {
    grid-template-columns: minmax(250px, 46%) minmax(0, 1fr);
    align-items: stretch;
}

.tenant-highlight-media {
    min-width: 0;
    min-height: 100%;
    aspect-ratio: auto;
    padding: 0;
    overflow: hidden;
}

.tenant-highlight-media img,
.tenant-highlight-media .product-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 0;
}

.tenant-highlight-copy {
    min-width: 0;
    align-content: center;
    padding: 28px;
}

.tenant-highlight-copy h3,
.tenant-highlight-copy p {
    max-width: 24ch;
}

@media (max-width: 1200px) {
    .tenant-highlight-card {
        grid-template-columns: minmax(220px, 44%) minmax(0, 1fr);
    }

    .tenant-highlight-media img,
    .tenant-highlight-media .product-placeholder {
        min-height: 280px;
    }
}

@media (max-width: 900px) {
    .tenant-highlight-media img,
    .tenant-highlight-media .product-placeholder {
        min-height: 240px;
    }
}
/* tenant-search-bar-simplify */
.tenant-filter-panel-compact {
    gap: 14px;
    padding: 22px 24px;
}

.tenant-filter-form-inline {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    align-items: center;
}

.tenant-inline-search {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: #fbfdfb;
}

.tenant-inline-search input {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    border: 0;
    outline: none;
    background: transparent;
    font: inherit;
}

.tenant-filter-form-inline .button {
    margin-top: 0;
}

@media (max-width: 900px) {
    .tenant-filter-form-inline {
        grid-template-columns: 1fr;
    }
}
/* tenant-brazil-identity-strip */
.tenant-trust-strip-brazil {
    gap: 16px;
}

.tenant-trust-strip-brazil article {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 246, 0.98));
}

.tenant-trust-strip-brazil article::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
}

.tenant-trust-strip-brazil article:nth-child(1)::before {
    background: linear-gradient(90deg, #009739, #1fc55c);
}

.tenant-trust-strip-brazil article:nth-child(2)::before {
    background: linear-gradient(90deg, #ffdf00, #ffd000);
}

.tenant-trust-strip-brazil article:nth-child(3)::before {
    background: linear-gradient(90deg, #002776, #1d52c0);
}

.tenant-trust-strip-brazil article:nth-child(4)::before {
    background: linear-gradient(90deg, #009739, #ffdf00, #002776);
}

.tenant-trust-strip-brazil article:nth-child(1) strong {
    color: #006b2d;
}

.tenant-trust-strip-brazil article:nth-child(2) strong {
    color: #7d6500;
}

.tenant-trust-strip-brazil article:nth-child(3) strong {
    color: #002776;
}

.tenant-trust-strip-brazil article:nth-child(4) strong {
    color: #005c2a;
}
/* tenant-same-page-filtering */
.is-hidden {
    display: none !important;
}

.tenant-sidebar-title {
    margin: 0;
    font-size: 1.35rem;
}

.tenant-storefront-main-focused {
    gap: 18px;
}

.tenant-active-filters-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-chip strong {
    margin-left: 4px;
    font-weight: 800;
}

.tenant-products-grid-primary {
    align-items: stretch;
}

.tenant-empty-state {
    text-align: center;
}

.tenant-empty-state p {
    margin: 0;
}

@media (max-width: 900px) {
    .tenant-active-filters-inline {
        align-items: stretch;
    }
}
/* tenant-whatsapp-support-link */
.tenant-support-link.is-disabled {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

/* launch-ready-marketing-upgrade */
.marketing-hero-dominance {
    border-color: rgba(255, 223, 0, 0.14);
    background:
        radial-gradient(circle at top right, rgba(255, 223, 0, 0.32), transparent 24%),
        radial-gradient(circle at bottom left, rgba(0, 39, 118, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(0, 82, 36, 0.99) 0%, rgba(0, 151, 57, 0.95) 54%, rgba(0, 39, 118, 0.94) 100%);
}

.hero-value-points,
.offer-checklist-grid,
.legal-grid-two,
.legal-bullets,
.platform-footer,
.platform-footer-links {
    display: grid;
}

.hero-value-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.hero-value-point {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}

.hero-value-point strong,
.hero-value-point span,
.proof-callout span,
.proof-callout strong {
    display: block;
}

.hero-value-point strong {
    margin-bottom: 8px;
}

.hero-value-point p,
.proof-callout p,
.platform-footer p,
.legal-meta {
    margin: 0;
}

.hero-value-point span {
    color: #fff2a6;
    font-weight: 800;
}

.dominance-browser {
    animation-duration: 8s;
}

.proof-callout {
    padding: 18px 20px;
    border-radius: 24px;
    box-shadow: 0 20px 44px rgba(0, 40, 18, 0.12);
}

.proof-callout strong {
    margin: 8px 0;
    font-size: 1.6rem;
}

.proof-callout-green {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(232, 250, 238, 0.96));
    color: #0f2a1a;
}

.proof-callout-yellow {
    background: linear-gradient(180deg, rgba(255, 244, 176, 0.98), rgba(255,255,255,0.98));
    color: #3a3000;
}

.dominance-strip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dominance-strip-card {
    min-height: 100%;
}

.offer-panel-aggressive {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 220px;
    gap: 24px;
    padding: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 223, 0, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244, 250, 243, 0.98));
}

.offer-panel-copy {
    display: grid;
    gap: 14px;
}

.offer-panel-price {
    align-self: start;
    display: grid;
    gap: 6px;
    padding: 22px;
    border-radius: 24px;
    color: var(--br-white);
    background: linear-gradient(135deg, #004d21 0%, #006b2d 58%, #002776 100%);
    box-shadow: 0 24px 54px rgba(0, 40, 18, 0.18);
}

.offer-panel-price span,
.offer-panel-price strong,
.offer-panel-price small {
    display: block;
}

.offer-panel-price strong {
    font-size: 2.3rem;
    line-height: 1;
}

.offer-checklist-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.offer-checklist-card,
.legal-info-card {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid var(--border-soft);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.compact-list {
    margin: 0;
}

.final-cta-panel-strong {
    position: relative;
    overflow: hidden;
}

.final-cta-panel-strong::after {
    content: '';
    position: absolute;
    inset: auto auto -80px -80px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 223, 0, 0.16);
}

.legal-page-rich {
    gap: 18px;
}

.legal-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 107, 45, 0.10);
}

.legal-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.legal-bullets {
    gap: 12px;
    margin-top: 22px;
}

.legal-list li + li {
    margin-top: 10px;
}

.legal-meta {
    color: var(--text-muted);
}

.topnav-cta {
    margin-left: 6px;
}

.platform-footer {
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1fr);
    gap: 20px;
    margin-top: 34px;
    padding: 24px 28px;
    border-radius: 28px;
    border: 1px solid rgba(0, 107, 45, 0.10);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.platform-footer-improved {
    grid-template-columns: minmax(280px, 1.4fr) auto auto;
    gap: 28px 40px;
    padding: 32px 28px;
}

.platform-footer strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.footer-brand p {
    margin: 0 0 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-info a {
    color: var(--br-green-dark);
    font-weight: 700;
    font-size: 0.92rem;
}

.platform-footer-links {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 10px;
    align-content: start;
}

.platform-footer-links a {
    color: var(--br-green-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 1100px) {
    .hero-value-points,
    .dominance-strip-grid,
    .offer-checklist-grid,
    .legal-grid-two,
    .platform-footer,
    .platform-footer-improved {
        grid-template-columns: 1fr;
    }

    .offer-panel-aggressive {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =============================================
   BRAND IDENTITY - TenisBR
   ============================================= */

/* Hero Brand Block - Dark green like the brand guide */
.hero-brand-block {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 0;
    background:
        radial-gradient(ellipse at top right, rgba(255, 223, 0, 0.22), transparent 30%),
        radial-gradient(ellipse at bottom left, rgba(0, 39, 118, 0.18), transparent 36%),
        linear-gradient(160deg, #041a0a 0%, #0a2e14 30%, #0d3a18 50%, #062a10 100%);
    color: #fff;
    box-shadow: 0 32px 80px rgba(0, 20, 8, 0.30);
}

.hero-brand-content {
    display: grid;
    gap: 24px;
    padding: 48px 42px 36px;
    text-align: center;
    align-items: center;
    justify-items: center;
}

.hero-logo-area {
    margin-bottom: 8px;
}

.hero-logo-img {
    max-width: 340px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.hero-logo-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.hero-logo-mark {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: lowercase;
    color: #fff;
}

.hero-logo-mark span {
    color: var(--br-yellow);
}

.hero-logo-domain {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.hero-slogan h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    max-width: 720px;
    margin: 0 auto;
}

.hero-slogan h1 span {
    color: var(--br-yellow);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.hero-ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-ghost-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Trust Bar */
.hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.15);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-trust-item:last-child {
    border-right: none;
}

.hero-trust-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-trust-item strong {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Button Large ===== */
.button.large {
    min-height: 56px;
    padding: 0 32px;
    font-size: 1.08rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ===== Panel heading center ===== */
.panel-heading-center {
    text-align: center;
    justify-content: center;
}

.panel-heading-center > div {
    max-width: 640px;
}

/* ===== Steps ===== */
.steps-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card-enhanced {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 900;
    color: #0a2e14;
    background: linear-gradient(135deg, var(--br-yellow) 0%, #ffe866 100%);
    box-shadow: 0 12px 28px rgba(255, 223, 0, 0.35);
}

.step-card-enhanced strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

/* ===== Included Grid ===== */
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.included-card {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(0, 40, 18, 0.16);
}

.included-card-highlight {
    background: linear-gradient(180deg, rgba(255, 223, 0, 0.14) 0%, #fff 100%);
    border-color: rgba(255, 223, 0, 0.45);
}

.included-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(0, 151, 57, 0.08);
    font-size: 1.6rem;
}

.included-card-highlight .included-icon {
    background: rgba(255, 223, 0, 0.22);
}

.included-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.08rem;
}

/* ===== Brands Strip ===== */
.brands-strip-section {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(180deg, #fff 0%, #f7fbf6 100%);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.brands-logo-row {
    margin-top: 24px;
}

.brands-strip-img {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.brands-text-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.brand-name-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--br-green-deeper);
    background: rgba(0, 151, 57, 0.08);
    border: 1px solid rgba(0, 107, 45, 0.12);
    letter-spacing: 0.02em;
}

/* ===== Store Preview Block ===== */
.store-preview-block {
    display: grid;
    gap: 18px;
    max-width: 680px;
    margin: 0 auto;
}

.store-preview-browser {
    animation: none;
}

.store-preview-cta {
    text-align: center;
}

.store-preview-cta p {
    margin: 0 0 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== Price Panel ===== */
.price-panel-clean {
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 223, 0, 0.12), transparent 30%),
        linear-gradient(180deg, #fff 0%, #f7fbf6 100%);
}

.price-panel-content {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto;
    gap: 28px;
    align-items: center;
}

.price-includes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 8px;
}

.price-includes span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--br-green-dark);
}

.price-box {
    display: grid;
    gap: 6px;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 223, 0, 0.15), transparent 40%),
        linear-gradient(150deg, #041a0a 0%, #0a2e14 40%, #062a10 100%);
    box-shadow: 0 28px 60px rgba(0, 20, 8, 0.28);
}

.price-value {
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 900;
    color: var(--br-yellow);
}

.price-box small {
    font-size: 1rem;
    opacity: 0.75;
}

/* ===== Final CTA Brand ===== */
.final-cta-brand {
    background:
        radial-gradient(ellipse at top right, rgba(255, 223, 0, 0.18), transparent 30%),
        linear-gradient(160deg, #041a0a 0%, #0a2e14 40%, #0d3a18 70%, #062a10 100%);
    border-color: rgba(255, 223, 0, 0.08);
}

.final-cta-brand .lead {
    color: rgba(255, 255, 255, 0.78);
}

/* ===== UX REFRESH: Contact Page ===== */
.contact-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-channel-card {
    display: grid;
    gap: 10px;
    padding: 28px;
    border-radius: 24px;
    border: 2px solid var(--border-soft);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    color: var(--text-main);
}

.contact-channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(0, 40, 18, 0.16);
}

.contact-channel-whatsapp:hover {
    border-color: #25d366;
}

.contact-channel-email:hover {
    border-color: var(--br-blue);
}

.contact-channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
}

.contact-channel-icon svg {
    width: 32px;
    height: 32px;
}

.contact-channel-whatsapp .contact-channel-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.contact-channel-email .contact-channel-icon {
    background: rgba(0, 39, 118, 0.08);
    color: var(--br-blue);
}

.contact-channel-card strong {
    font-size: 1.2rem;
}

.contact-channel-action {
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
    font-weight: 800;
    font-size: 0.95rem;
}

.contact-channel-whatsapp .contact-channel-action {
    color: #128c3e;
}

.contact-channel-email .contact-channel-action {
    color: var(--br-blue);
}

/* Contact Form */
.contact-form-panel {
    display: grid;
    gap: 18px;
}

.contact-form {
    gap: 16px;
}

/* FAQ */
.faq-panel {
    display: grid;
    gap: 22px;
}

.faq-list {
    display: grid;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-soft);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-soft);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 4px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    color: var(--text-main);
    transition: color 0.15s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::before {
    content: '+';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    background: var(--br-green);
    transition: background 0.2s ease;
}

.faq-item[open] .faq-question::before {
    content: '\2212';
    background: var(--br-green-dark);
}

.faq-item[open] .faq-question {
    color: var(--br-green-dark);
}

.faq-answer {
    padding: 0 4px 20px 52px;
    line-height: 1.75;
    color: var(--text-muted);
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--br-green-dark);
    font-weight: 700;
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .hero-trust-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-includes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero-brand-content {
        padding: 32px 22px 28px;
    }

    .hero-trust-bar {
        grid-template-columns: 1fr;
    }

    .hero-trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .hero-trust-item:last-child {
        border-bottom: none;
    }

    .steps-grid-three,
    .included-grid,
    .contact-channels-grid,
    .price-panel-content {
        grid-template-columns: 1fr;
    }

    .faq-answer {
        padding-left: 4px;
    }

    .step-card-enhanced {
        text-align: left;
    }

    .step-number {
        margin: 0 0 14px;
    }

    .hero-logo-img {
        max-width: 240px;
    }
}

.tenant-account-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 39, 118, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: var(--br-green-dark);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tenant-account-link:hover,
.tenant-account-link.is-active {
    transform: translateY(-1px);
    border-color: rgba(0, 151, 57, 0.35);
    box-shadow: 0 12px 30px rgba(0, 39, 118, 0.12);
}

.buyer-portal-section {
    gap: 24px;
}

.buyer-access-shell,
.buyer-portal-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.9fr);
}

.buyer-access-card,
.buyer-support-card,
.buyer-orders-panel,
.buyer-finance-card {
    border-radius: 28px;
}

.buyer-access-form {
    margin-top: 20px;
}

.buyer-access-actions {
    display: flex;
    align-items: center;
}

.buyer-portal-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 107, 45, 0.98), rgba(0, 151, 57, 0.9) 55%, rgba(0, 39, 118, 0.88));
    color: #fff;
    box-shadow: 0 28px 60px rgba(0, 53, 22, 0.24);
}

.buyer-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.buyer-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.buyer-stat-card {
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 107, 45, 0.08);
    box-shadow: 0 20px 40px rgba(5, 35, 17, 0.08);
}

.buyer-stat-card.is-highlight {
    background: linear-gradient(135deg, rgba(255, 223, 0, 0.2), rgba(255, 255, 255, 0.98));
}

.buyer-stat-card span,
.buyer-finance-list span,
.buyer-order-finance span {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.buyer-stat-card strong {
    display: block;
    margin-top: 12px;
    font-size: 1.7rem;
    color: var(--br-green-dark);
}

.buyer-stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
}

.buyer-orders-list,
.buyer-sidebar-stack,
.buyer-support-stack,
.buyer-payment-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.buyer-order-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(248, 251, 247, 0.88);
    border: 1px solid rgba(0, 107, 45, 0.08);
}

.buyer-order-topline,
.buyer-order-finance,
.buyer-order-actions,
.panel-heading-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.buyer-order-topline strong,
.buyer-payment-row strong {
    font-size: 1.02rem;
    color: var(--br-green-dark);
}

.buyer-order-topline span,
.buyer-payment-row span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

.buyer-order-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.buyer-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 223, 0, 0.28);
    color: var(--br-green-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.buyer-badge.is-secondary {
    background: rgba(0, 39, 118, 0.1);
}

.buyer-order-items,
.buyer-order-note,
.buyer-finance-list {
    margin-top: 16px;
}

.buyer-order-item-line,
.buyer-payment-row,
.buyer-finance-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.buyer-order-item-line + .buyer-order-item-line,
.buyer-payment-row + .buyer-payment-row,
.buyer-finance-list > div + div {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 107, 45, 0.08);
}

.buyer-order-item-line small {
    color: var(--text-muted);
    text-align: right;
}

.buyer-order-finance {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 107, 45, 0.08);
}

.buyer-order-finance strong,
.buyer-finance-list strong {
    display: block;
    margin-top: 6px;
    color: var(--br-green-dark);
    font-size: 1rem;
}

.buyer-order-note {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
}

.buyer-order-note p {
    margin: 6px 0 0;
    color: var(--text-muted);
}

.buyer-order-actions {
    margin-top: 18px;
    align-items: stretch;
}

.buyer-payment-row {
    align-items: flex-start;
}

.buyer-support-card-sticky {
    position: sticky;
    top: 24px;
}

@media (max-width: 1100px) {
    .buyer-access-shell,
    .buyer-portal-grid,
    .buyer-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .buyer-access-shell > :first-child,
    .buyer-portal-grid > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .buyer-access-shell,
    .buyer-portal-grid,
    .buyer-stats-grid,
    .buyer-portal-hero,
    .buyer-order-topline,
    .buyer-order-finance,
    .buyer-order-actions,
    .panel-heading-inline {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .buyer-order-badges,
    .buyer-hero-actions {
        justify-content: flex-start;
    }

    .buyer-support-card-sticky {
        position: static;
    }
}
.seller-toolbar-panel {
    padding: 22px 24px;
}

.seller-toolbar,
.seller-toolbar-actions,
.seller-switcher-inline,
.seller-role-grid,
.seller-meta-grid {
    display: grid;
}

.seller-toolbar {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 20px;
    align-items: end;
}

.seller-toolbar-actions {
    gap: 14px;
    align-content: start;
    justify-items: end;
}

.seller-switcher-form {
    width: 100%;
}

.seller-switcher-field {
    width: 100%;
}

.seller-switcher-inline {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.seller-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.seller-role-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(0, 107, 45, 0.08);
    background: rgba(248, 251, 247, 0.92);
}

.seller-role-card strong {
    font-size: 1rem;
    color: var(--br-green-dark);
}

.seller-role-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.seller-role-card-highlight {
    background: linear-gradient(180deg, rgba(255, 223, 0, 0.18) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-color: rgba(255, 223, 0, 0.4);
}

.seller-dashboard-grid {
    align-items: start;
}

.seller-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.seller-catalog-card .price-stack {
    display: grid;
    gap: 6px;
    text-align: right;
}

.seller-catalog-card .price-stack span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .seller-toolbar,
    .seller-role-grid,
    .seller-meta-grid,
    .seller-switcher-inline {
        grid-template-columns: 1fr;
    }

    .seller-toolbar-actions {
        justify-items: stretch;
    }
}
.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.payment-method-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: #fff;
    cursor: pointer;
}

.payment-method-card.is-active {
    border-color: rgba(0, 151, 57, 0.4);
    box-shadow: 0 18px 36px rgba(0, 40, 18, 0.08);
    background: linear-gradient(180deg, rgba(0, 151, 57, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.payment-method-card.is-disabled {
    opacity: 0.68;
    cursor: not-allowed;
    background: #f7fbf6;
}

.payment-method-card input {
    margin-top: 4px;
}

.payment-method-copy {
    display: grid;
    gap: 6px;
}

.payment-method-copy strong {
    font-size: 1rem;
    color: var(--br-green-dark);
}

.payment-method-copy p,
.payment-method-copy small {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.payment-method-warning {
    color: var(--danger);
    font-weight: 700;
}

@media (max-width: 900px) {
    .payment-method-grid {
        grid-template-columns: 1fr;
    }
}
/* refined public experience */
.hero-brand-block-refined {
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(0, 88, 40, 0.98) 0%, rgba(0, 151, 57, 0.95) 58%, rgba(0, 39, 118, 0.94) 100%);
    color: var(--br-white);
    box-shadow: 0 28px 80px rgba(0, 53, 23, 0.22);
}

.hero-brand-content-refined {
    padding: 44px 40px 26px;
    text-align: center;
}

.hero-subtitle-strong {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
}

.steps-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform-footer-refined {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.7fr));
    gap: 28px;
    align-items: start;
}

.platform-footer-primary {
    display: grid;
    gap: 10px;
}

.platform-footer-primary h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0;
}

.platform-footer-primary p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.75;
}

.platform-footer-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.platform-footer-links {
    display: grid;
    gap: 10px;
}

.platform-footer-links strong {
    font-size: 1rem;
}

.platform-footer-links a {
    color: var(--br-green-dark);
    font-weight: 700;
}

.floating-support-bubble {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0fbe56 0%, #0b9d45 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 24px 60px rgba(0, 70, 28, 0.24);
}

.floating-support-bubble svg {
    width: 24px;
    height: 24px;
}

.contact-channels-grid-refined .contact-channel-card {
    min-height: 220px;
    align-content: space-between;
}

.contact-form-panel {
    scroll-margin-top: 24px;
}

@media (max-width: 1100px) {
    .steps-grid-four,
    .platform-footer-refined {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .platform-footer-primary {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .hero-brand-content-refined {
        padding: 34px 22px 22px;
    }

    .steps-grid-four,
    .platform-footer-refined {
        grid-template-columns: 1fr;
    }

    .floating-support-bubble {
        right: 14px;
        bottom: 14px;
        padding: 0 16px;
    }

    .floating-support-bubble span {
        display: none;
    }
}

/* storefront-ux-hardening */
.tenant-storefront-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
}

.tenant-trust-strip {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    align-items: stretch;
}

.tenant-trust-strip article {
    min-height: 118px;
}

.tenant-products-grid,
.tenant-products-grid-primary {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.tenant-product-card {
    grid-template-rows: auto 1fr;
    height: 100%;
    min-width: 0;
}

.tenant-product-card .product-media {
    aspect-ratio: 1 / 1;
    padding: 10px;
    background: linear-gradient(180deg, #f5faf4 0%, #ffffff 100%);
}

.tenant-product-card .product-media img {
    border-radius: 20px;
}

.tenant-product-card .product-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    height: 100%;
    padding: 16px 16px 18px;
}

.tenant-product-meta-top {
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.tenant-product-card h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.3;
}

.tenant-product-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1 1 auto;
    min-height: 72px;
}

.tenant-product-card .price-line {
    margin-top: 2px;
}

.tenant-product-card .price-line strong {
    font-size: 1.08rem;
}

.tenant-product-card .price-line span {
    font-size: 0.88rem;
}

.tenant-card-footer {
    width: 100%;
    margin-top: auto;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.tenant-card-footer span {
    font-size: 0.82rem;
    line-height: 1.4;
}

.tenant-card-footer .button {
    min-width: 124px;
    padding-inline: 14px;
    white-space: nowrap;
    flex: 0 0 auto;
}

@media (max-width: 1280px) {
    .tenant-storefront-layout {
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .tenant-products-grid,
    .tenant-products-grid-primary {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }
}

@media (max-width: 900px) {
    .tenant-storefront-layout {
        grid-template-columns: 1fr;
    }

    .tenant-category-sidebar {
        position: static;
    }

    .tenant-product-card p {
        min-height: 0;
    }

    .tenant-card-footer .button {
        width: 100%;
    }
}

/* storefront-ux-hardening-v2 */
.tenant-storefront-layout {
    grid-template-columns: 150px minmax(0, 1fr) !important;
    gap: 16px !important;
}

.tenant-storefront-main-focused {
    gap: 16px !important;
}

.tenant-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.tenant-trust-strip article {
    min-height: 104px;
    padding: 16px 18px !important;
}

.tenant-category-sidebar {
    top: 104px !important;
}

.tenant-category-link {
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 0.92rem !important;
}

.tenant-storefront-main-focused .tenant-products-grid.tenant-products-grid-primary {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    align-items: stretch !important;
}

.tenant-product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-width: 0 !important;
}

.tenant-product-card .product-media {
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
    padding: 8px !important;
}

.tenant-product-card .product-meta {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 14px !important;
    gap: 8px !important;
}

.tenant-product-meta-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.tenant-product-card .product-tag,
.tenant-product-card .table-subtitle {
    font-size: 0.78rem !important;
}

.tenant-product-card h3 {
    font-size: 0.98rem !important;
    line-height: 1.28 !important;
}

.tenant-product-card p {
    flex: 1 1 auto !important;
    min-height: 52px !important;
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
    overflow: hidden;
}

.tenant-product-card .price-line {
    gap: 8px !important;
}

.tenant-product-card .price-line strong {
    font-size: 1rem !important;
}

.tenant-product-card .price-line span {
    font-size: 0.8rem !important;
}

.tenant-card-footer {
    margin-top: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
}

.tenant-card-footer span {
    font-size: 0.78rem !important;
    white-space: nowrap;
}

.tenant-card-footer .button {
    min-width: 108px !important;
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 0.88rem !important;
    white-space: nowrap !important;
}

@media (max-width: 1250px) {
    .tenant-storefront-layout {
        grid-template-columns: 1fr !important;
    }

    .tenant-category-sidebar {
        position: static !important;
    }

    .tenant-category-nav {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    }

    .tenant-storefront-main-focused .tenant-products-grid.tenant-products-grid-primary {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 780px) {
    .tenant-trust-strip {
        grid-template-columns: 1fr !important;
    }

    .tenant-storefront-main-focused .tenant-products-grid.tenant-products-grid-primary {
        grid-template-columns: 1fr !important;
    }

    .tenant-card-footer {
        flex-wrap: wrap !important;
    }

    .tenant-card-footer .button {
        width: 100% !important;
    }
}

/* mobile-commerce-first */
.cart-desktop-table {
    display: block;
}

.cart-mobile-list {
    display: none;
}

.cart-mobile-card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    background: #fbfdfb;
}

.cart-mobile-head {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.cart-mobile-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 16px;
    background: #f4f8f3;
}

.cart-mobile-meta {
    min-width: 0;
}

.cart-mobile-meta strong,
.cart-mobile-price strong {
    display: block;
}

.cart-mobile-meta .table-subtitle,
.cart-mobile-price .table-subtitle {
    margin-top: 4px;
}

.cart-mobile-actions {
    display: grid;
    gap: 10px;
}

.cart-mobile-actions form {
    margin: 0;
}

.cart-mobile-qty {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.cart-mobile-qty input {
    width: 100%;
}

@media (max-width: 900px) {
    .tenant-shell-wrapper {
        width: min(100%, calc(100% - 16px));
        padding-top: 12px;
    }

    .tenant-topbar {
        position: static;
        top: auto;
        gap: 12px;
        margin-bottom: 18px;
        padding: 14px;
        border-radius: 22px;
    }

    .tenant-topbar-shell {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: stretch !important;
    }

    .tenant-brand-link {
        display: grid !important;
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    .tenant-brand-logo,
    .tenant-brand-fallback {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .tenant-brand-copy {
        min-width: 0;
    }

    .tenant-brand-copy strong {
        display: block;
        font-size: 1rem;
        line-height: 1.2;
    }

    .tenant-brand-copy span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.78rem;
    }

    .tenant-search-form {
        order: 3;
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: stretch !important;
    }

    .tenant-search-field {
        width: 100%;
        min-width: 0;
    }

    .tenant-search-field input {
        font-size: 16px;
    }

    .tenant-search-form .button {
        width: 100%;
    }

    .tenant-header-actions {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100% !important;
        gap: 8px;
    }

    .tenant-account-link,
    .tenant-support-link,
    .tenant-cart-button {
        min-height: 42px;
        justify-content: center;
        padding: 0 10px;
        font-size: 0.84rem;
        text-align: center;
        border-radius: 14px;
    }

    .tenant-cart-button {
        gap: 8px;
    }

    .tenant-menu-shell {
        padding-top: 0;
        border-top: 0;
    }

    .tenant-menu-links,
    .tenant-menu-links-centered {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        justify-content: flex-start !important;
        width: 100%;
        scrollbar-width: none;
    }

    .tenant-menu-links::-webkit-scrollbar,
    .tenant-category-nav::-webkit-scrollbar {
        display: none;
    }

    .tenant-menu-link,
    .tenant-category-link {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .tenant-storefront-layout {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .tenant-category-sidebar {
        position: static !important;
        top: auto !important;
        gap: 12px;
    }

    .tenant-category-sidebar.panel {
        padding: 14px;
    }

    .tenant-category-nav {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .tenant-trust-strip {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .tenant-trust-strip article {
        min-height: 0;
        padding: 14px 16px !important;
    }

    .tenant-storefront-main-focused .tenant-products-grid.tenant-products-grid-primary,
    .tenant-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .tenant-product-card .product-media {
        padding: 6px !important;
    }

    .tenant-product-card .product-meta {
        padding: 12px !important;
        gap: 8px !important;
    }

    .tenant-product-card h3 {
        font-size: 0.94rem !important;
    }

    .tenant-product-card p {
        min-height: 0 !important;
        font-size: 0.84rem !important;
        line-height: 1.4 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .tenant-product-card .price-line strong {
        font-size: 0.96rem !important;
    }

    .tenant-product-card .price-line span {
        font-size: 0.78rem !important;
    }

    .tenant-card-footer {
        flex-wrap: wrap !important;
    }

    .tenant-card-footer span {
        width: 100%;
        white-space: normal;
    }

    .tenant-card-footer .button {
        width: 100% !important;
        min-width: 0 !important;
    }

    .tenant-product-page {
        gap: 16px !important;
    }

    .tenant-product-gallery.panel,
    .tenant-product-detail.panel {
        padding: 14px;
    }

    .tenant-product-benefits {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .option-list {
        gap: 8px;
    }

    .option-pill {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.88rem;
    }

    .freight-form-row,
    .actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .freight-form-row .button,
    .actions .button {
        width: 100%;
    }

    .checkout-layout {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .order-summary {
        order: -1;
    }

    .cart-desktop-table {
        display: none;
    }

    .cart-mobile-list {
        display: grid;
        gap: 12px;
    }

    .floating-support-bubble {
        right: 12px;
        bottom: 12px;
        width: 54px;
        min-height: 54px;
        padding: 0;
        border-radius: 999px;
    }

    .floating-support-bubble span {
        display: none;
    }
}

@media (max-width: 560px) {
    .tenant-header-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tenant-cart-button {
        grid-column: 1 / -1;
    }

    .tenant-storefront-main-focused .tenant-products-grid.tenant-products-grid-primary,
    .tenant-products-grid {
        grid-template-columns: 1fr !important;
    }

    .tenant-brand-copy span {
        display: none;
    }
}

/* storefront-mobile-finish */
.tenant-shell-wrapper {
    overflow-x: clip;
}

.tenant-storefront-layout-focused {
    display: grid;
    grid-template-columns: minmax(148px, 176px) minmax(0, 1fr);
    gap: 16px !important;
    align-items: start;
}

.tenant-storefront-main-focused {
    min-width: 0;
    gap: 14px !important;
}

.tenant-storefront-main-focused .tenant-products-grid.tenant-products-grid-primary {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.tenant-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.tenant-trust-strip article {
    min-height: 0 !important;
}

.tenant-category-sidebar {
    width: 100%;
    min-width: 0;
}

.tenant-category-sidebar.panel {
    padding: 16px !important;
}

.tenant-category-nav {
    gap: 10px;
}

.tenant-category-link {
    min-width: 0;
}

.tenant-product-card {
    min-width: 0;
    align-self: stretch;
}

.tenant-product-card .product-media {
    aspect-ratio: 1 / 1;
}

.tenant-product-card .product-meta {
    min-width: 0;
}

.tenant-product-card h3,
.tenant-product-card p,
.tenant-product-card .price-line,
.tenant-product-card .tenant-product-meta-top,
.tenant-card-footer {
    min-width: 0;
}

.tenant-card-footer {
    gap: 10px !important;
}

.tenant-card-footer span {
    min-width: 0;
}

.tenant-card-footer .button {
    min-width: 0 !important;
}

@media (max-width: 1180px) {
    .tenant-storefront-layout-focused {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .tenant-storefront-main-focused .tenant-products-grid.tenant-products-grid-primary {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .tenant-topbar {
        position: static !important;
        top: auto !important;
    }

    .tenant-topbar-shell {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 12px !important;
        align-items: stretch !important;
    }

    .tenant-brand-link {
        width: 100%;
    }

    .tenant-search-form {
        width: 100% !important;
        grid-template-columns: 1fr !important;
    }

    .tenant-header-actions {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px !important;
        width: 100% !important;
    }

    .tenant-account-link,
    .tenant-support-link,
    .tenant-cart-button {
        min-height: 42px;
        justify-content: center !important;
        text-align: center;
    }

    .tenant-menu-shell {
        padding-top: 0 !important;
        border-top: 0 !important;
    }

    .tenant-menu-links,
    .tenant-menu-links-centered {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .tenant-storefront-layout-focused {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .tenant-category-sidebar {
        position: static !important;
        top: auto !important;
    }

    .tenant-category-sidebar.panel {
        padding: 14px !important;
    }

    .tenant-category-nav {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .tenant-trust-strip {
        grid-template-columns: 1fr !important;
    }

    .tenant-storefront-main-focused .tenant-products-grid.tenant-products-grid-primary,
    .tenant-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .tenant-product-page {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .tenant-product-gallery.panel,
    .tenant-product-detail.panel,
    .checkout-layout > .panel,
    .order-summary {
        padding: 16px !important;
    }

    .tenant-product-benefits,
    .freight-form-row,
    .actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .actions .button,
    .freight-form-row .button {
        width: 100% !important;
    }

    .checkout-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .order-summary {
        order: -1;
    }
}

@media (max-width: 640px) {
    .tenant-topbar {
        margin-bottom: 16px !important;
        padding: 14px !important;
        border-radius: 22px !important;
    }

    .tenant-brand-link {
        gap: 10px !important;
    }

    .tenant-brand-logo,
    .tenant-brand-fallback {
        width: 44px !important;
        height: 44px !important;
    }

    .tenant-brand-copy strong {
        font-size: 0.98rem !important;
    }

    .tenant-search-field input {
        font-size: 16px !important;
    }

    .tenant-header-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .tenant-cart-button {
        grid-column: 1 / -1;
    }

    .tenant-storefront-main-focused .tenant-products-grid.tenant-products-grid-primary,
    .tenant-products-grid {
        grid-template-columns: 1fr !important;
    }

    .tenant-product-card .product-meta {
        padding: 12px !important;
    }

    .tenant-product-card h3 {
        font-size: 0.96rem !important;
    }

    .tenant-product-card p {
        font-size: 0.86rem !important;
        -webkit-line-clamp: 3;
    }

    .payment-method-grid {
        grid-template-columns: 1fr !important;
    }

    .shipping-option {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }

    .cart-mobile-head {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .cart-mobile-thumb {
        width: 68px;
        height: 68px;
    }

    .cart-mobile-actions,
    .cart-mobile-qty {
        display: grid;
        gap: 10px;
    }
}

/* tenant-app-dock */
.tenant-mobile-dock {
    display: none;
}

@media (max-width: 900px) {
    .tenant-body .page {
        padding-bottom: calc(102px + env(safe-area-inset-bottom));
    }

    .tenant-header-actions {
        display: none !important;
    }

    .floating-support-bubble {
        display: none !important;
    }

    .tenant-mobile-dock {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        z-index: 130;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 8px;
        padding: 10px;
        border-radius: 28px;
        border: 1px solid rgba(0, 39, 118, 0.10);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 18px 45px rgba(0, 39, 118, 0.14);
        backdrop-filter: blur(18px);
    }

    .tenant-mobile-dock-link {
        min-width: 0;
        min-height: 58px;
        display: grid;
        justify-items: center;
        align-content: center;
        gap: 4px;
        padding: 8px 4px;
        border-radius: 18px;
        color: var(--tenant-secondary, #0d3f83);
        text-decoration: none;
        text-align: center;
        font-size: 0.72rem;
        font-weight: 700;
        line-height: 1.15;
    }

    .tenant-mobile-dock-link svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    .tenant-mobile-dock-link strong {
        min-width: 18px;
        height: 18px;
        display: inline-grid;
        place-items: center;
        padding: 0 5px;
        border-radius: 999px;
        background: #15316c;
        color: #fff;
        font-size: 0.68rem;
        line-height: 1;
    }

    .tenant-mobile-dock-link.is-active {
        background: linear-gradient(135deg, rgba(0, 151, 57, 0.14), rgba(0, 39, 118, 0.08));
        color: #005b2a;
    }

    .tenant-mobile-dock-link.is-disabled {
        opacity: 0.45;
    }

    .tenant-purchase-form {
        padding-bottom: 108px;
    }

    .tenant-sticky-buy-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(94px + env(safe-area-inset-bottom));
        z-index: 125;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: center;
        padding: 14px;
        border-radius: 24px;
        border: 1px solid rgba(0, 107, 45, 0.14);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 18px 40px rgba(0, 42, 18, 0.14);
        backdrop-filter: blur(14px);
    }

    .tenant-sticky-buy-copy {
        gap: 4px;
        min-width: 0;
    }

    .tenant-sticky-buy-copy small {
        color: var(--text-muted);
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .tenant-sticky-buy-copy strong {
        font-size: 1.2rem;
        color: var(--tenant-secondary);
        line-height: 1.1;
    }

    .tenant-sticky-buy-bar .button {
        min-height: 52px;
        padding: 0 20px;
        white-space: nowrap;
    }
}

@media (max-width: 560px) {
    .tenant-body .page {
        padding-bottom: calc(108px + env(safe-area-inset-bottom));
    }

    .tenant-mobile-dock {
        left: 10px;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        gap: 6px;
        padding: 8px;
        border-radius: 24px;
    }

    .tenant-mobile-dock-link {
        min-height: 56px;
        font-size: 0.68rem;
        padding: 8px 2px;
    }

    .tenant-mobile-dock-link svg {
        width: 18px;
        height: 18px;
    }

    .tenant-purchase-form {
        padding-bottom: 118px;
    }

    .tenant-sticky-buy-bar {
        left: 10px;
        right: 10px;
        bottom: calc(90px + env(safe-area-inset-bottom));
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
        border-radius: 22px;
    }

    .tenant-sticky-buy-bar .button {
        width: 100%;
    }
}

/* tenant-mobile-product-priority */
@media (max-width: 900px) {
    .tenant-trust-strip {
        display: none !important;
    }

    .tenant-storefront-main-focused {
        gap: 12px !important;
    }

    .tenant-active-filters {
        margin-bottom: 2px;
    }
}

@media (max-width: 640px) {
    .tenant-category-sidebar.panel {
        padding: 12px !important;
        border-radius: 20px !important;
    }

    .tenant-sidebar-title {
        margin-bottom: 4px;
        font-size: 0.98rem;
    }

    .tenant-category-link {
        min-height: 38px !important;
        padding: 0 12px !important;
        font-size: 0.84rem !important;
    }

    .tenant-storefront-main-focused .tenant-products-grid.tenant-products-grid-primary,
    .tenant-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .tenant-product-card {
        border-radius: 22px !important;
    }

    .tenant-product-card .product-media {
        padding: 4px !important;
    }

    .tenant-product-card .product-media img {
        border-radius: 18px !important;
    }

    .tenant-product-card .product-meta {
        padding: 10px !important;
        gap: 6px !important;
    }

    .tenant-product-card .product-tag,
    .tenant-product-card .table-subtitle {
        font-size: 0.74rem !important;
    }

    .tenant-product-card h3 {
        font-size: 0.9rem !important;
        line-height: 1.22 !important;
    }

    .tenant-product-card p {
        font-size: 0.8rem !important;
        line-height: 1.32 !important;
        -webkit-line-clamp: 2;
    }

    .tenant-product-card .price-line {
        gap: 6px !important;
    }

    .tenant-product-card .price-line strong {
        font-size: 0.92rem !important;
    }

    .tenant-product-card .price-line span {
        font-size: 0.72rem !important;
    }

    .tenant-card-footer {
        gap: 8px !important;
    }

    .tenant-card-footer span {
        display: none !important;
    }

    .tenant-card-footer .button {
        min-height: 40px;
        padding: 0 10px !important;
        font-size: 0.82rem !important;
        border-radius: 999px !important;
    }
}

@media (max-width: 390px) {
    .tenant-storefront-main-focused .tenant-products-grid.tenant-products-grid-primary,
    .tenant-products-grid {
        grid-template-columns: 1fr !important;
    }
}
