:root {
    --mm-bg: #fff9fc;
    --mm-card: #ffffff;
    --mm-text: #344054;
    --mm-primary: #f8bbd0;
    --mm-secondary: #b3e5fc;
    --mm-accent: #7fd8be;
    --mm-shadow: 0 10px 30px rgba(52, 64, 84, 0.08);
    --mm-radius: 18px;
}

@media (max-width: 560px) {
    .product-images-preview,
    .product-upload-grid {
        grid-template-columns: 1fr;
    }

    .product-image-manage-card img {
        height: 170px;
    }

    .product-upload-zone-inner {
        padding: 0.95rem 0.8rem;
    }

    .product-upload-title {
        font-size: 0.95rem;
    }

    .product-upload-subtitle {
        font-size: 0.82rem;
        margin-bottom: 0.6rem;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Nunito", "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #fffafd 0%, #f9fcff 100%);
    color: var(--mm-text);
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    color: #1d2939;
    margin: 0 0 0.6rem;
}

p {
    margin: 0 0 0.8rem;
}

.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

main.container {
    padding-top: 1.2rem;
    padding-bottom: 2rem;
}

.topbar {
    background: #fff;
    box-shadow: var(--mm-shadow);
    position: sticky;
    top: 0;
    z-index: 20;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
    color: #1d2939;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--mm-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a.active {
    background: #f1f7ff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: none;
    border-radius: 12px;
    padding: 0.72rem 1rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(120deg, var(--mm-primary), #ffc7de);
    color: #402130;
}

.btn-secondary {
    background: #edf6ff;
    color: #175172;
}

.btn-success {
    background: #25d366;
    color: #fff;
}

.btn-danger {
    background: #ff6b6b;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #1f4d7a;
    border: 1px solid #c9d7ea;
}

.btn-soft {
    background: #f2f6ff;
    color: #1f4d7a;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.hero {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1rem;
}

.banner-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--mm-shadow);
    position: relative;
    min-height: 280px;
}

.banner-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.banner-copy {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(30, 41, 59, 0.72) 100%);
    color: #fff;
}

.section-title {
    margin: 1.5rem 0 0.8rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: #23324b;
}

.grid {
    display: grid;
    gap: 1rem;
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    background: var(--mm-card);
    border-radius: var(--mm-radius);
    box-shadow: var(--mm-shadow);
    overflow: hidden;
    padding: 1rem;
}

.card img,
.product-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.card-body {
    padding: 0.9rem;
}

.product-title {
    font-weight: 800;
    margin: 0;
    color: #213347;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--mm-shadow);
    overflow: hidden;
    padding: 0.8rem;
}

.product-card-body {
    padding-top: 0.65rem;
}

.muted {
    color: #667085;
}

.price {
    font-size: 1.15rem;
    font-weight: 900;
    color: #0f766e;
}

.badge {
    display: inline-flex;
    background: #eef9ff;
    color: #225f7c;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.panel {
    background: #fff;
    border-radius: var(--mm-radius);
    box-shadow: var(--mm-shadow);
    padding: 1rem;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.super-tenant-header {
    margin-bottom: 1.15rem;
}

.super-tenant-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.super-tenant-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.super-tenant-section {
    border: 1px solid #edf2f7;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
    padding: 1rem;
}

.super-tenant-section-head {
    margin-bottom: 0.85rem;
}

.super-tenant-section-head h2 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
}

.super-tenant-section-head p {
    margin: 0;
    color: #667085;
    font-size: 0.92rem;
    line-height: 1.5;
}

.super-tenant-color-preview {
    margin-bottom: 0.85rem;
    padding: 1rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.super-tenant-color-preview-head {
    margin-bottom: 0.85rem;
}

.super-tenant-color-preview strong {
    display: block;
    font-size: 1rem;
    color: #1d2939;
}

.super-tenant-color-preview p {
    margin: 0.28rem 0 0;
    color: #667085;
    font-size: 0.88rem;
    line-height: 1.45;
}

.super-tenant-color-preview-badge {
    display: inline-flex;
    margin-bottom: 0.4rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.74rem;
    font-weight: 800;
}

.super-tenant-color-preview-mockup {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.super-tenant-color-preview-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.8rem 0.95rem;
    background: var(--tenant-preview-primary, #f8bbd0);
}

.super-tenant-color-preview-brand {
    color: #1d2939;
    font-size: 0.92rem;
    font-weight: 900;
}

.super-tenant-color-preview-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: #1d2939;
    font-size: 0.72rem;
    font-weight: 800;
}

.super-tenant-color-preview-body {
    padding: 0.95rem;
}

.super-tenant-color-preview-card {
    padding: 0.95rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
}

.super-tenant-color-preview-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    margin-bottom: 0.55rem;
    padding: 0.18rem 0.65rem;
    border-radius: 999px;
    background: var(--tenant-preview-secondary, #b3e5fc);
    color: #1d2939;
    font-size: 0.74rem;
    font-weight: 800;
}

.super-tenant-color-preview-card strong {
    display: block;
    margin: 0 0 0.35rem;
    color: #1d2939;
    font-size: 1rem;
}

.super-tenant-color-preview-card p {
    margin: 0 0 0.8rem;
    color: #667085;
    font-size: 0.86rem;
}

.super-tenant-color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.super-tenant-color-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.super-tenant-color-chip.is-primary {
    background: var(--tenant-preview-primary, #f8bbd0);
    color: #1d2939;
}

.super-tenant-color-chip.is-secondary {
    background: var(--tenant-preview-secondary, #b3e5fc);
    color: #1d2939;
}

.super-tenant-color-preview-button {
    border: 0;
    min-height: 38px;
    padding: 0.55rem 0.95rem;
    border-radius: 12px;
    background: var(--tenant-preview-primary, #f8bbd0);
    color: #1d2939;
    font: inherit;
    font-weight: 800;
}

.super-tenant-palette-picker {
    margin-bottom: 0.9rem;
}

.super-tenant-palette-title {
    margin: 0 0 0.45rem;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 800;
}

.super-tenant-palette-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.super-tenant-palette-btn {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 14px;
    padding: 0.45rem 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #334155;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.super-tenant-palette-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.super-tenant-palette-swatches {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.super-tenant-palette-swatches span {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.super-tenant-actions {
    display: flex;
    justify-content: flex-start;
    padding-top: 0.2rem;
}

.tenant-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tenant-categories-help {
    margin-bottom: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #fffafd 0%, #fff 100%);
    border: 1px solid #f1d7e4;
}

.tenant-categories-help-title {
    margin: 0 0 0.18rem;
    color: #9d174d;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tenant-categories-help-text {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.5;
}

.tenant-category-card {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 0.9rem 1rem;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.tenant-category-card-top {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    min-width: 0;
}

.tenant-category-card-media {
    flex-shrink: 0;
    width: 84px;
    height: 64px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tenant-category-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tenant-category-card-placeholder {
    color: #94a3b8;
    font-weight: 800;
    font-size: 1.1rem;
}

.tenant-category-card-main {
    flex: 1 1 auto;
    min-width: 0;
}

.tenant-category-card-title {
    margin: 0 0 0.35rem;
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    word-wrap: break-word;
}

.tenant-category-card-summary {
    margin-top: 0.65rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.tenant-category-card-fact {
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.55rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-width: 0;
}

.tenant-category-card-fact strong {
    color: #0f172a;
    font-size: 0.94rem;
}

.tenant-category-card-fact-label {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tenant-category-card-slug {
    font-size: 0.84rem;
    padding: 0.12rem 0.4rem;
    border-radius: 6px;
    background: #f1f5f9;
    color: #334155;
    word-break: break-all;
}

.tenant-category-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.tenant-category-card-delete-form {
    margin: 0;
    display: inline-flex;
}

.tenant-category-main-action {
    min-width: 150px;
}

.tenant-category-empty {
    margin: 0;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    background: #f8fafc;
}

.tenant-product-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tenant-products-help {
    margin-bottom: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #fffafd 0%, #fff 100%);
    border: 1px solid #f1d7e4;
}

.tenant-products-help-title {
    margin: 0 0 0.18rem;
    color: #9d174d;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tenant-products-help-text {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.5;
}

.tenant-product-card {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #fff;
    padding: 0.9rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.tenant-product-card-main {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    min-width: 0;
}

.tenant-product-card-media {
    width: 92px;
    height: 92px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    flex-shrink: 0;
}

.tenant-product-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tenant-product-card-body {
    min-width: 0;
    flex: 1 1 auto;
}

.tenant-product-card-headline {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tenant-product-card-title {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.tenant-product-card-slug {
    margin: 0.35rem 0 0;
    color: #64748b;
    font-size: 0.8rem;
    word-break: break-word;
}

.tenant-product-card-summary {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.tenant-product-card-fact {
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.55rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-width: 0;
}

.tenant-product-card-fact-label {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tenant-product-card-category {
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 800;
}

.tenant-product-card-status,
.tenant-product-status-toggle {
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    display: inline-flex;
    width: fit-content;
    border: 1px solid transparent;
}

.tenant-product-status-toggle {
    cursor: pointer;
    background: transparent;
}

.tenant-product-card-status.is-active,
.tenant-product-status-toggle.is-active {
    color: #065f46;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
}

.tenant-product-card-status.is-inactive,
.tenant-product-status-toggle.is-inactive {
    color: #9f1239;
    background: #ffe4e6;
    border: 1px solid #fecdd3;
}

.tenant-product-card-price {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
    color: #0f172a;
}

.tenant-product-card-compare {
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: line-through;
}

.tenant-product-card-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid #f1f5f9;
}

.tenant-product-card-actions form {
    margin: 0;
    display: inline-flex;
}

.tenant-product-main-action {
    min-width: 150px;
}

.tenant-product-empty {
    margin: 0;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    background: #f8fafc;
}

.tenant-banner-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.tenant-banners-help {
    margin-bottom: 0.95rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #fffafd 0%, #fff 100%);
    border: 1px solid #f1d7e4;
}

.tenant-banners-help-title {
    margin: 0 0 0.18rem;
    color: #9d174d;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tenant-banners-help-text {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.5;
}

.tenant-banner-card {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #fff;
    padding: 0.9rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    cursor: grab;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tenant-banner-card.is-dragging {
    opacity: .75;
    cursor: grabbing;
}

.tenant-banner-card.is-drop-target {
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, .14);
}

.tenant-banner-card-main {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.tenant-banner-card-media {
    width: 100%;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tenant-banner-card-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.tenant-banner-card-placeholder {
    padding: 1rem;
    color: #94a3b8;
    font-weight: 700;
}

.tenant-banner-card-title {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.tenant-banner-card-headline {
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
}

.tenant-banner-card-subtitle {
    margin: 0.35rem 0 0;
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.45;
}

.tenant-banner-card-summary {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.tenant-banner-card-fact {
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.55rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.tenant-banner-card-fact-label {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tenant-banner-card-fact strong {
    color: #0f172a;
    font-size: 0.94rem;
}

.tenant-banner-card-status,
.tenant-banner-status-toggle {
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    border: 1px solid transparent;
    display: inline-flex;
    width: fit-content;
}

.tenant-banner-status-toggle {
    cursor: pointer;
    background: transparent;
}

.tenant-banner-card-status.is-active,
.tenant-banner-status-toggle.is-active {
    color: #065f46;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
}

.tenant-banner-card-status.is-inactive,
.tenant-banner-status-toggle.is-inactive {
    color: #9f1239;
    background: #ffe4e6;
    border: 1px solid #fecdd3;
}

.tenant-banner-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid #f1f5f9;
}

.tenant-banner-card-actions form {
    margin: 0;
    display: inline-flex;
}

.tenant-banner-main-action {
    min-width: 150px;
}

.tenant-banner-empty {
    margin: 0;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    background: #f8fafc;
}

@media (min-width: 720px) {
    .tenant-category-card {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.75rem 1rem;
    }

    .tenant-category-card-top {
        flex: 1 1 auto;
        min-width: 0;
    }

    .tenant-category-card-actions {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        flex-shrink: 0;
        flex-wrap: nowrap;
    }

    .tenant-category-card-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tenant-product-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.85rem 1rem;
    }

    .tenant-product-card-main {
        flex: 1 1 auto;
    }

    .tenant-product-card-actions {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        flex-wrap: nowrap;
        flex-shrink: 0;
    }

    .tenant-banner-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.9rem 1rem;
    }

    .tenant-banner-card-main {
        flex: 1 1 auto;
        display: grid;
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 0.9rem;
        align-items: center;
    }

    .tenant-banner-card-thumb {
        height: 102px;
    }

    .tenant-banner-card-actions {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        flex-wrap: nowrap;
        flex-shrink: 0;
    }

    .tenant-banner-card-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tenant-product-card-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.table-wrap {
    overflow-x: auto;
}

.table-actions {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.super-home-mode-panel {
    border: 1px solid #e5e7eb;
}

.super-home-mode-form {
    align-items: end;
}

.super-home-mode-toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.super-home-mode-toggle label {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    cursor: pointer;
}

.super-home-mode-toggle label strong {
    display: block;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.super-home-mode-toggle label small {
    display: block;
    color: #667085;
    line-height: 1.45;
}

.super-home-mode-switch {
    width: 48px;
    height: 28px;
    border-radius: 999px;
    background: #cbd5e1;
    position: relative;
    flex-shrink: 0;
    transition: background .2s ease;
    margin-top: 0.1rem;
}

.super-home-mode-switch span {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
    transition: transform .2s ease;
}

.super-home-mode-toggle input[type="checkbox"]:checked + label .super-home-mode-switch {
    background: #22c55e;
}

.super-home-mode-toggle input[type="checkbox"]:checked + label .super-home-mode-switch span {
    transform: translateX(20px);
}

.super-tenants-table td[data-label]::before {
    display: none;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 0.75rem 0.55rem;
    text-align: left;
    border-bottom: 1px solid #e8edf3;
    font-size: 0.95rem;
}

th {
    font-weight: 800;
    color: #344054;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 0.7rem 0.78rem;
    font: inherit;
    background: #fff;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.section {
    padding-top: 1.2rem;
    padding-bottom: 2rem;
}

.section-subtitle {
    color: #667085;
}

.section-spaced {
    padding-top: 1.2rem;
    padding-bottom: 2rem;
}

.card-soft {
    background: #fff7fb;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.table-panel {
    background: #fff;
    border-radius: var(--mm-radius);
    box-shadow: var(--mm-shadow);
    padding: 1rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.text-center {
    text-align: center;
}

.alert {
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    margin: 0.6rem 0 1rem;
}

.alert-success {
    background: #d1fadf;
    color: #05603a;
}

.alert-error {
    background: #fee4e2;
    color: #b42318;
}

.notice {
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    margin-bottom: 1rem;
}

.notice.success {
    background: #d1fadf;
    color: #05603a;
}

.notice.error {
    background: #fee4e2;
    color: #b42318;
}

.notice.error ul {
    margin: 0;
    padding-left: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat {
    background: #fff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--mm-shadow);
}

.stat h3 {
    margin: 0;
    font-size: 0.95rem;
    color: #667085;
}

.stat p {
    margin: 0.45rem 0 0;
    font-size: 1.6rem;
    font-weight: 800;
    color: #101828;
}

.footer-note {
    margin: 1.7rem 0 1rem;
    text-align: center;
    color: #667085;
    font-size: 0.9rem;
}

.store-shell {
    width: min(1160px, 92%);
    margin: 1.2rem auto 2rem;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-link img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.store-title {
    margin: 0;
    font-size: 1.2rem;
}

.store-subtitle {
    margin: 0;
    color: #667085;
    font-size: 0.92rem;
}

.store-actions {
    display: flex;
    gap: 0.6rem;
}

.category-chips,
.chips {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.chip {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: #edf6ff;
    font-weight: 700;
    font-size: 0.84rem;
}

.chip.is-active {
    background: #d9efff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.product-category {
    color: #667085;
    display: block;
    margin-bottom: 0.3rem;
}

.hero-banner img {
    width: 100%;
    border-radius: 16px;
}

.empty-state {
    color: #667085;
}

.pagination-wrap {
    margin-top: 1rem;
}

.grid-products {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-products .body {
    padding-top: 0.6rem;
}

.section-stack {
    padding-top: 1.4rem;
    padding-bottom: 2rem;
}

.admin-nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
}

.admin-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.9rem 0;
    flex-wrap: wrap;
}

.admin-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.admin-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #f2f6ff;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.admin-links a:hover {
    border-color: #bfdbfe;
    background: #eff6ff;
}

.admin-links a.is-active {
    background: #dbeafe;
    color: #1d4ed8;
    border-color: #93c5fd;
}

.admin-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.admin-brand-text small {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 700;
}

.admin-brand-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 34ch;
}

.admin-nav-inner > form {
    margin: 0;
    flex-shrink: 0;
}

.admin-nav-inner > form .btn {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .admin-nav-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand logout"
            "links links";
        gap: 0.55rem 0.65rem;
        padding: 0.7rem 0 0.75rem;
        align-items: center;
    }

    .admin-nav-inner > .brand.admin-brand {
        grid-area: brand;
        min-width: 0;
        align-self: center;
    }

    .admin-nav-inner > nav.admin-links {
        grid-area: links;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        gap: 0.45rem;
        padding: 0.15rem 0 0;
        scrollbar-width: none;
    }

    .admin-nav-inner > nav.admin-links::-webkit-scrollbar {
        display: none;
    }

    .admin-nav-inner > form {
        grid-area: logout;
        justify-self: end;
    }

    .admin-links a {
        min-height: 42px;
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 0.84rem;
        line-height: 1;
        padding: 0.55rem 0.82rem;
        border-radius: 999px;
        background: #f8fbff;
        border-color: #e2e8f0;
        box-shadow: none;
    }

    .admin-links a.is-active {
        background: #dbeafe;
        border-color: #93c5fd;
        color: #1d4ed8;
        box-shadow: none;
    }

    .admin-nav-inner > form .btn {
        min-height: 42px;
        font-size: 0.82rem;
        padding: 0.45rem 0.9rem;
        border-radius: 999px;
    }

    .admin-brand-name {
        max-width: min(52vw, 200px);
    }

    .admin-brand-text small {
        font-size: 0.68rem;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 420px) {
    .admin-brand-name {
        max-width: min(46vw, 140px);
    }

    .admin-links a {
        font-size: 0.84rem;
        padding: 0.52rem 0.74rem;
    }
}

.admin-page {
    padding-top: 1.2rem;
    padding-bottom: 2rem;
}

.admin-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.admin-head h1 {
    margin: 0;
}

.admin-panel-header {
    margin-bottom: 0.9rem;
}

.admin-panel-header h1 {
    margin: 0;
}

.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.admin-kpi-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.04);
}

.admin-kpi-card h3 {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

.admin-kpi-card p {
    margin: 0.3rem 0 0.6rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
}

.admin-kpi-card a {
    color: #2563eb;
    font-weight: 700;
    font-size: 0.88rem;
}

.table-actions-cell {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.admin-settings-page .panel {
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.admin-settings-page {
    scroll-behavior: smooth;
}

.admin-settings-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, clamp(300px, 34vw, 440px));
    gap: clamp(1.15rem, 2.2vw, 2rem);
    align-items: start;
}

.admin-settings-main {
    min-width: 0;
}

.admin-settings-hero {
    display: block;
    margin-bottom: 1rem;
}

.admin-settings-hero h1 {
    margin: 0.55rem 0 0.45rem;
}

.admin-settings-hero-copy {
    max-width: 62ch;
    margin: 0;
    line-height: 1.6;
}

.admin-settings-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.admin-settings-preview {
    background: linear-gradient(180deg, #f8fbff 0%, #fdf2f8 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: clamp(0.85rem, 1.5vw, 1.15rem);
    position: sticky;
    top: 1rem;
    min-height: min(calc(100vh - 8rem), 920px);
    display: flex;
    flex-direction: column;
    max-width: 460px;
}

.admin-settings-preview-head {
    margin-bottom: 0.65rem;
}

.admin-settings-preview-label {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
}

.admin-settings-preview-sub {
    margin: 0.25rem 0 0;
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
    max-width: 36ch;
}

.admin-settings-preview-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.admin-settings-preview-announcement {
    background: linear-gradient(90deg, var(--preview-announcement, var(--preview-secondary)), var(--preview-announcement-2, var(--preview-announcement, var(--preview-secondary))));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
    padding: 0.48rem 0.7rem;
    letter-spacing: 0.03em;
    line-height: 1.25;
}

.admin-settings-preview-announcement-inner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: 1.15rem;
}

.admin-settings-preview-announcement-track {
    position: relative;
}

.admin-settings-preview-announcement-item {
    margin: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none;
}

.admin-settings-preview-announcement-item.is-active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.admin-settings-preview-top {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 1rem;
}

.admin-settings-preview-top strong,
.admin-settings-preview-top span {
    display: block;
}

.admin-settings-preview-top strong {
    color: #0f172a;
    font-size: 1rem;
}

.admin-settings-preview-top span {
    margin-top: 0.2rem;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.4;
}

.admin-settings-preview-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.35rem;
}

.admin-settings-preview-search {
    margin: 0 1rem 1rem;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    padding: 0.72rem 0.85rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.admin-settings-preview-nav {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 1rem 1rem;
}

.admin-settings-preview-nav span {
    background: var(--preview-nav);
    color: #fff;
    border-radius: 999px;
    padding: 0.32rem 0.72rem;
    font-size: 0.76rem;
    font-weight: 800;
}

.admin-settings-preview-nav .is-pill {
    background: var(--preview-pill);
}

.admin-settings-preview-hero {
    margin: 0 1rem 1rem;
    min-height: 220px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, var(--preview-primary), var(--preview-secondary));
    padding: 1.1rem;
    display: flex;
    align-items: flex-end;
}

.admin-settings-preview-hero-copy {
    color: #fff;
    max-width: 260px;
}

.admin-settings-preview-hero-copy small,
.admin-settings-preview-hero-copy strong,
.admin-settings-preview-hero-copy span {
    display: block;
}

.admin-settings-preview-hero-copy small {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
    font-size: 0.74rem;
    opacity: 0.92;
}

.admin-settings-preview-hero-copy strong {
    margin-top: 0.3rem;
    font-size: 1.6rem;
    line-height: 1.05;
}

.admin-settings-preview-hero-copy span {
    margin-top: 0.45rem;
    font-size: 0.88rem;
    line-height: 1.5;
    opacity: 0.95;
}

.admin-settings-preview-filters {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    padding: 0 1rem 1rem;
}

.admin-settings-preview-filters span {
    border: 1px solid #dbe3ef;
    background: #fff;
    color: #64748b;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 800;
}

.admin-settings-preview-filters .is-active {
    border-color: var(--preview-nav);
    color: var(--preview-nav);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.admin-settings-preview-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 0 1rem 1rem;
}

.admin-settings-preview-product {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.admin-settings-preview-product-media {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.admin-settings-preview-product-media.is-alt {
    background: linear-gradient(135deg, #fce7f3, #f5d0fe);
}

.admin-settings-preview-product strong,
.admin-settings-preview-product span {
    display: block;
    padding: 0 0.8rem;
}

.admin-settings-preview-product strong {
    margin: 0.75rem 0 0.2rem;
    font-size: 0.88rem;
    color: #0f172a;
}

.admin-settings-preview-product span {
    padding-bottom: 0.85rem;
    color: var(--preview-primary);
    font-size: 0.84rem;
    font-weight: 800;
}

.admin-settings-preview-footer {
    border-top: 1px solid #eef2f7;
    padding: 0.85rem 1rem 1rem;
    color: var(--preview-primary);
    font-weight: 800;
    margin-top: auto;
}

.admin-settings-preview-licenses-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.8rem;
}

.admin-settings-preview-licenses-row i {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 1px solid #e2e8f0;
}

.admin-settings-stepper {
    position: sticky;
    top: 4.35rem;
    z-index: 45;
    margin: 0 0 1.15rem;
    padding: 0.35rem;
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.admin-settings-stepper-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28rem;
    align-items: center;
    justify-content: flex-start;
}

.admin-settings-stepper a {
    text-decoration: none;
    border-radius: 999px;
    padding: 0.48rem 0.95rem;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 800;
    border: 1px solid transparent;
    background: transparent;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
}

.admin-settings-stepper a:hover {
    color: #1e40af;
    background: rgba(255, 255, 255, 0.65);
}

.admin-settings-stepper a.is-active {
    color: #1d4ed8;
    background: #fff;
    border-color: #dbeafe;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.12);
}

.admin-settings-stepper a:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.admin-settings-section {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: clamp(0.95rem, 1.6vw, 1.15rem);
    background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
    scroll-margin-top: 6.5rem;
}

.admin-settings-section + .admin-settings-section {
    margin-top: 1rem;
}

.admin-settings-section-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.admin-settings-section-head p {
    margin: 0;
    max-width: 42ch;
}

.admin-settings-step {
    margin: 0 0 0.3rem;
    color: #2563eb;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.admin-settings-section .settings-subheading,
.admin-settings-section .settings-subheading-small {
    margin: 0;
}

.admin-settings-inline {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.admin-settings-logo-box {
    width: 96px;
    height: 96px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.admin-settings-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.6rem;
}

.admin-settings-grow {
    flex: 1 1 auto;
}

.admin-settings-upload-zone {
    margin-top: 0;
}

.admin-settings-media-field {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.admin-settings-tile-preview {
    width: 100%;
    min-height: 120px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.admin-settings-tile-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.admin-settings-tile-placeholder {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 700;
}

.admin-settings-color-field {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0.65rem;
    align-items: center;
}

.admin-settings-color-field input[type="color"] {
    width: 58px;
    height: 48px;
    border-radius: 12px;
    padding: 0.25rem;
    border: 1px solid #d0d5dd;
    background: #fff;
    cursor: pointer;
}

.admin-settings-palette-picker {
    margin-bottom: 1rem;
}

.admin-settings-palette-title {
    margin: 0 0 0.45rem;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 800;
}

.admin-settings-palette-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.admin-settings-palette-btn {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 14px;
    padding: 0.45rem 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #334155;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.admin-settings-palette-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.admin-settings-palette-swatches {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.admin-settings-palette-swatches span {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-settings-note {
    margin: 1rem 0;
    background: #f8fbff;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 0.85rem 0.95rem;
    color: #274060;
}

.admin-settings-note a {
    color: #2563eb;
    font-weight: 700;
}

.admin-settings-helper {
    margin: 0.15rem 0 0.9rem;
}

.admin-settings-checkbox-grid {
    gap: 0.7rem;
}

.admin-settings-choice {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 0.58rem 0.8rem;
}

.admin-settings-repeater-row {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 0.7rem;
}

.field-help {
    display: block;
    margin-top: 0.38rem;
    color: #667085;
    font-size: 0.82rem;
    line-height: 1.45;
}

.admin-settings-savebar {
    position: sticky;
    bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
    z-index: 40;
    margin-top: 1.25rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border: 1px solid #dbe3ef;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
    border-radius: 18px;
    padding: clamp(0.85rem, 2vw, 1rem) clamp(0.95rem, 2vw, 1.1rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-settings-savebar-copy {
    flex: 1 1 220px;
    min-width: 0;
}

.admin-settings-savebar-copy strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.25;
}

.admin-settings-savebar-note {
    margin: 0.25rem 0 0;
    font-size: 0.84rem;
    line-height: 1.4;
    max-width: 52ch;
}

.admin-settings-savebar-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.landing-page section[id],
.landing-page .landing-merchant-band {
    scroll-margin-top: 4.5rem;
}

.landing-page {
    /* No usar overflow-x: hidden aquí: en muchos navegadores fuerza overflow-y: auto y aparece un segundo scroll vertical junto al del body. */
    --l-ink: #0f172a;
    --l-ink-soft: #334155;
    --l-muted: #64748b;
    --l-muted-2: #94a3b8;
    --l-border: #e2e8f0;
    --l-surface: #f1f5f9;
    --l-card: #ffffff;
    --l-accent: #4f46e5;
    --l-accent-bright: #6366f1;
    --l-accent-hover: #4338ca;
    --l-accent-soft: #eef2ff;
    --l-violet: #7c3aed;
    --l-teal: #0d9488;
    --l-teal-dark: #0f766e;
    --l-media-bg: #f8fafc;
    --l-chip-bg: #f1f5f9;
    --l-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 12px 24px -8px rgba(15, 23, 42, 0.12);
    --l-shadow-lg: 0 20px 40px -16px rgba(15, 23, 42, 0.18);
    --l-radius: 1.125rem;
    --l-radius-sm: 0.75rem;
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

.landing-boot {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
    background:
        radial-gradient(ellipse 80% 60% at 10% -10%, rgba(79, 70, 229, 0.16), transparent 55%),
        radial-gradient(ellipse 70% 50% at 95% 10%, rgba(124, 58, 237, 0.12), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(13, 148, 136, 0.08), transparent 45%),
        linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    transition: opacity 0.38s ease, visibility 0.38s ease;
}

.landing-boot.landing-boot--done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.landing-boot-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 1.35rem;
    border-radius: var(--l-radius);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--l-shadow);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.landing-boot-dots {
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.landing-boot-dots span {
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    background: var(--l-accent);
    animation: landing-boot-dot 1.05s ease-in-out infinite;
}

.landing-boot-dots span:nth-child(2) {
    background: var(--l-violet);
    animation-delay: 0.14s;
}

.landing-boot-dots span:nth-child(3) {
    background: var(--l-teal);
    animation-delay: 0.28s;
}

@keyframes landing-boot-dot {
    0%,
    72%,
    100% {
        transform: scale(0.78);
        opacity: 0.4;
    }

    36% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-boot {
        transition-duration: 0.12s;
    }

    .landing-boot-dots span {
        animation: none;
        opacity: 0.75;
    }
}

.landing-top-bar {
    position: sticky;
    top: 0;
    z-index: 45;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--l-border);
    padding: max(0.45rem, env(safe-area-inset-top, 0px)) 0 0.45rem;
    isolation: isolate;
}

.landing-top-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.landing-top-pills {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.landing-top-search {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.32s ease, opacity 0.22s ease;
}

.landing-page.landing-page--top-search-visible .landing-top-search {
    max-height: 4.5rem;
    opacity: 1;
    pointer-events: auto;
}

.landing-hero-search--bar {
    width: 100%;
    max-width: min(28rem, 100%);
    margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
    .landing-top-search {
        transition-duration: 0.12s;
    }
}

.landing-top-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    color: var(--l-accent-hover);
    border: 1px solid rgba(199, 210, 254, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.landing-top-pill--muted {
    background: var(--l-surface);
    color: var(--l-muted);
    border-color: var(--l-border);
}

@media (max-width: 899px) {
    .landing-page section[id],
    .landing-page .landing-merchant-band {
        scroll-margin-top: calc(4.75rem + env(safe-area-inset-top, 0px));
    }

    .landing-page.landing-page--top-search-visible section[id],
    .landing-page.landing-page--top-search-visible .landing-merchant-band {
        scroll-margin-top: calc(7.25rem + env(safe-area-inset-top, 0px));
    }

    .landing-top-bar {
        background: rgba(248, 250, 252, 0.98);
        box-shadow: 0 1px 0 rgba(226, 232, 240, 0.95);
    }

    .landing-page.landing-page--top-search-visible .landing-top-bar {
        box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
    }

    .landing-top-bar-inner {
        gap: 0.28rem;
    }

    .landing-top-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.35rem;
        padding: 0.1rem 0 0.2rem;
        margin: 0 -0.35rem;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    }

    .landing-top-pills::-webkit-scrollbar {
        display: none;
    }

    .landing-top-pill {
        flex-shrink: 0;
        font-size: 0.68rem;
        padding: 0.22rem 0.5rem;
        white-space: nowrap;
    }

    .landing-top-search .landing-hero-search {
        padding: 0.38rem 0.55rem;
    }

    .landing-top-search .landing-hero-search input {
        font-size: 0.86rem;
    }

    .landing-page.landing-page--top-search-visible .landing-top-search {
        max-height: 4rem;
    }

    .landing-shell {
        z-index: 0;
    }

    .landing-reveal {
        z-index: 0;
    }
}

.landing-shell {
    position: relative;
    padding-top: 0.25rem;
    padding-bottom: 2rem;
    /* visible: evita contenedor con scroll propio (doble barra) que daba overflow:hidden. */
    overflow: visible;
}

.landing-shell-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% -10%, rgba(79, 70, 229, 0.16), transparent 55%),
        radial-gradient(ellipse 70% 50% at 95% 10%, rgba(124, 58, 237, 0.12), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(13, 148, 136, 0.08), transparent 45%),
        linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    pointer-events: none;
}

.landing-shell .container {
    position: relative;
    z-index: 1;
}

.landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1rem, 2.5vw, 1.35rem);
    align-items: stretch;
}

.landing-hero-copy,
.landing-hero-copy--glass {
    --landing-glass-bg: rgba(255, 255, 255, 0.52);
    --landing-glass-border: rgba(255, 255, 255, 0.72);
    --landing-glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    background: var(--landing-glass-bg);
    backdrop-filter: blur(22px) saturate(1.45);
    -webkit-backdrop-filter: blur(22px) saturate(1.45);
    border-radius: var(--l-radius);
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow:
        var(--landing-glass-highlight),
        0 4px 24px rgba(15, 23, 42, 0.07),
        0 24px 64px -32px rgba(79, 70, 229, 0.18);
    border: 1px solid var(--landing-glass-border);
    max-width: min(980px, 100%);
    margin: 0 auto;
}

.landing-hero-visual {
    min-height: 0;
}

.landing-hero-visual-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--l-radius);
    border: 1px solid var(--l-border);
    box-shadow: var(--l-shadow);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.landing-hero-visual-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--l-shadow-lg);
}

.landing-hero-visual-media {
    margin: 0;
    flex: 1;
    min-height: 12rem;
    aspect-ratio: 16 / 10;
    max-height: min(42vh, 320px);
    background: linear-gradient(160deg, var(--l-accent-soft) 0%, var(--l-surface) 55%, var(--l-media-bg) 100%);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.landing-hero-visual-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 4% 6%;
    box-sizing: border-box;
    display: block;
}

.landing-hero-visual-body {
    padding: 1rem 1.1rem 1.15rem;
    border-top: 1px solid var(--l-border);
}

.landing-hero-visual-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--l-accent);
}

.landing-hero-visual-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--l-muted);
}

.landing-kicker {
    display: inline-flex;
    margin-bottom: 0.65rem;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    color: var(--l-accent-hover);
    border: 1px solid rgba(199, 210, 254, 0.85);
    border-radius: 999px;
    padding: 0.32rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.landing-hero-copy h1 {
    font-size: clamp(1.5rem, 1.1rem + 3.8vw, 2.65rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: var(--l-ink);
    letter-spacing: -0.025em;
    font-weight: 800;
}

@supports (text-wrap: balance) {
    .landing-hero-copy h1,
    .landing-glass-stack--tenants .landing-h2 {
        text-wrap: balance;
    }
}

.landing-hero-copy p {
    color: var(--l-muted);
    font-size: 1.02rem;
}

.landing-hero-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.15rem;
}

.landing-mini-trust {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.landing-mini-trust li {
    background: var(--l-chip-bg);
    color: var(--l-ink-soft);
    border: 1px solid var(--l-border);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.landing-mini-trust strong {
    color: var(--l-accent);
    font-weight: 800;
}

.landing-hero-card {
    margin: 0;
    background: var(--l-card);
    border-radius: var(--l-radius);
    overflow: hidden;
    box-shadow: var(--l-shadow-lg);
    border: 1px solid var(--l-border);
    display: grid;
    grid-template-rows: auto auto 1fr;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.landing-hero-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.2);
}

.landing-hero-media {
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(38vh, 300px);
    min-height: 160px;
    background: var(--l-media-bg);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.landing-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 3% 5%;
    box-sizing: border-box;
    display: block;
}

.landing-hero-card-copy {
    padding: 1rem;
}

.landing-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0 1rem 1rem;
}

.landing-stat-card {
    appearance: none;
    border-radius: var(--l-radius-sm);
    border: 1px solid var(--l-border);
    background: linear-gradient(180deg, #fff 0%, var(--l-surface) 100%);
    padding: 0.55rem 0.5rem;
    display: grid;
    gap: 0.1rem;
    cursor: pointer;
    font: inherit;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.landing-stat-card:hover,
.landing-stat-card:focus-visible {
    border-color: #a5b4fc;
    background: #fff;
    outline: none;
    transform: scale(1.02);
}

.landing-stat-card strong {
    font-size: 1.1rem;
    color: var(--l-accent);
    line-height: 1.1;
    font-weight: 800;
}

.landing-stat-card span {
    font-size: 0.68rem;
    color: var(--l-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.landing-hero-card-copy p {
    margin: 0;
    color: var(--l-muted);
}

.landing-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.landing-section-head--row {
    align-items: center;
}

.landing-section-head p {
    margin: 0;
    color: var(--l-muted-2);
}

.landing-h2 {
    margin: 0 0 0.25rem;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--l-ink);
    letter-spacing: -0.02em;
}

.landing-section-sub {
    margin: 0;
    font-size: 0.9rem;
    color: var(--l-muted);
    font-weight: 500;
}

.landing-persona,
.landing-persona--glass {
    margin-top: 1.1rem;
    border-radius: calc(var(--l-radius-sm) + 4px);
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(16px) saturate(1.25);
    -webkit-backdrop-filter: blur(16px) saturate(1.25);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    overflow: hidden;
}

.landing-persona-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0.25rem;
    background: var(--l-surface);
}

.landing-persona-tab {
    border: none;
    background: transparent;
    padding: 0.55rem 0.65rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--l-muted);
    border-radius: calc(var(--l-radius-sm) - 2px);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.landing-persona-tab.is-active {
    background: var(--l-card);
    color: var(--l-ink);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.landing-persona-tab:focus-visible {
    outline: 2px solid var(--l-accent);
    outline-offset: 2px;
}

.landing-persona-panels {
    padding: 0.85rem 0.9rem 1rem;
}

.landing-persona-panel {
    display: none;
}

.landing-persona-panel.is-active {
    display: block;
    animation: landing-fade-up 0.35s ease forwards;
    padding: 0.85rem 0.9rem 1rem;
}

.landing-persona-panel-lead {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    color: var(--l-muted);
    line-height: 1.45;
}

.landing-persona-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
}

.landing-chip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--l-accent);
    color: #fff;
    border: none;
    transition: transform 0.15s ease, background 0.15s ease;
}

.landing-chip-btn:hover,
.landing-chip-btn:focus-visible {
    background: var(--l-accent-hover);
    transform: translateY(-1px);
    outline: none;
}

.landing-chip-btn--soft {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--l-accent);
    border: 1px solid rgba(199, 210, 254, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.landing-chip-btn--soft:hover,
.landing-chip-btn--soft:focus-visible {
    background: var(--l-accent-soft);
}

.landing-hero-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(15, 23, 42, 0.04);
}

.landing-hero-search-icon {
    color: var(--l-muted);
    display: flex;
    flex-shrink: 0;
}

.landing-hero-search input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: var(--l-ink);
    outline: none;
}

.landing-hero-q-hint {
    margin: 0.45rem 0 0;
    font-size: 0.75rem;
    color: var(--l-muted-2);
}

@media (max-width: 767px) {
    .landing-hero-copy,
    .landing-hero-copy--glass {
        border-radius: 18px;
        padding: 1.05rem 1rem 1.12rem;
        --landing-glass-bg: rgba(255, 255, 255, 0.58);
        backdrop-filter: blur(20px) saturate(1.35);
        -webkit-backdrop-filter: blur(20px) saturate(1.35);
        border: 1px solid rgba(255, 255, 255, 0.7);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.82),
            0 10px 36px rgba(15, 23, 42, 0.1);
    }

    .landing-hero-copy h1 {
        font-size: clamp(1.42rem, 0.95rem + 4.2vw, 2.05rem);
        line-height: 1.12;
        margin-bottom: 0.65rem;
    }

    .landing-lead {
        font-size: 0.98rem;
        line-height: 1.52;
    }

    .landing-persona,
    .landing-persona--glass {
        border-radius: 16px;
        margin-top: 0.95rem;
        --landing-glass-bg: rgba(255, 255, 255, 0.42);
        background: rgba(255, 255, 255, 0.42);
        backdrop-filter: blur(18px) saturate(1.3);
        -webkit-backdrop-filter: blur(18px) saturate(1.3);
        border: 1px solid rgba(255, 255, 255, 0.55);
    }

    .landing-persona-panel {
        padding: 0.62rem 0.58rem 0.68rem;
    }

    .landing-persona-actions {
        gap: 0.45rem;
        flex-direction: column;
    }

    .landing-chip-btn {
        border-radius: 12px;
        min-height: 44px;
        padding: 0.48rem 0.82rem;
        flex: 1 1 auto;
        justify-content: center;
        min-width: 0;
    }

    .landing-hero-search {
        border-radius: 14px;
    }

    .landing-hero-search input {
        border-radius: 14px;
        padding: 0.74rem 0.9rem 0.74rem 2.25rem;
        font-size: 1rem;
    }

    .landing-kicker {
        margin-bottom: 0.55rem;
    }

    .landing-glass-stack--tenants {
        padding: 1rem 0.9rem 0.95rem;
        border-radius: 18px;
    }

    .landing-glass-stack--tenants .landing-h2 {
        font-size: clamp(1.22rem, 0.9rem + 2.2vw, 1.55rem);
        line-height: 1.18;
    }
}

.landing-chips-scroller {
    position: relative;
    margin: 0 -0.25rem;
    padding: 0.15rem 0.25rem 0.35rem;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

/* Franja “Locales en la vitrina”: panel cristal + chips */
.landing-glass-stack--tenants {
    padding: clamp(1rem, 2.4vw, 1.35rem);
    border-radius: calc(var(--l-radius) - 2px);
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(22px) saturate(1.38);
    -webkit-backdrop-filter: blur(22px) saturate(1.38);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 10px 40px rgba(15, 23, 42, 0.08);
}

.landing-glass-stack--tenants .landing-section-head.landing-section-head--glass {
    margin-bottom: 0.8rem;
}

.landing-glass-stack--tenants .landing-h2 {
    font-size: clamp(1.28rem, 1rem + 1.5vw, 1.68rem);
    line-height: 1.16;
}

.landing-glass-stack--tenants .landing-chips-scroller {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0.25rem;
}

.landing-store-search--lg input {
    padding: 0.85rem 1rem;
    border-radius: 999px;
    font-size: 1rem;
    border-width: 2px;
}

.landing-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-reveal.is-inview {
    opacity: 1;
    transform: translateY(0);
}

@keyframes landing-fade-up {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-transparency: reduce) {
    .landing-hero-copy,
    .landing-hero-copy--glass,
    .landing-persona,
    .landing-persona--glass,
    .landing-glass-stack--tenants,
    .landing-section-head:not(.landing-section-head--glass),
    .landing-top-pill,
    .landing-kicker,
    .landing-hero-search,
    .landing-chip-btn--soft,
    .landing-tenant-chip {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .landing-hero-copy,
    .landing-hero-copy--glass {
        background: rgba(255, 255, 255, 0.94);
    }

    .landing-persona,
    .landing-persona--glass {
        background: rgba(255, 255, 255, 0.92);
    }

    .landing-glass-stack--tenants {
        background: rgba(255, 255, 255, 0.94);
    }

    .landing-tenant-chip {
        background: rgba(255, 255, 255, 0.98);
    }

    .landing-chip-btn--soft {
        background: #fff;
    }

    .landing-hero-search {
        background: #fff;
    }

    .landing-kicker,
    .landing-top-pill {
        background: var(--l-accent-soft);
    }

    @media (max-width: 767px) {
        .landing-section-head:not(.landing-section-head--glass) {
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid #e5e7eb;
            box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
        }
    }
}

.landing-showcase {
    position: relative;
}

.landing-showcase-nav {
    display: flex;
    gap: 0.35rem;
}

.landing-showcase-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid var(--l-border);
    background: var(--l-card);
    color: var(--l-ink-soft);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.landing-showcase-btn:hover,
.landing-showcase-btn:focus-visible {
    border-color: #a5b4fc;
    color: var(--l-accent);
    outline: none;
}

@media (max-width: 768px) {
    .landing-showcase-nav {
        display: none;
    }

    .landing-products.landing-products-featured {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.85rem;
        padding: 0.25rem 0.15rem 0.65rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .landing-products-featured .landing-product-link {
        flex: 0 0 min(86vw, 300px);
        scroll-snap-align: start;
    }
}

.landing-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 0.45rem 0.6rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--l-border);
    box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.08);
}

.landing-dock-inner {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 0.25rem;
}

.landing-dock-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.35rem 0.25rem;
    border-radius: var(--l-radius-sm);
    text-decoration: none;
    color: var(--l-muted);
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.landing-dock-item:hover,
.landing-dock-item:focus-visible {
    background: var(--l-accent-soft);
    color: var(--l-accent);
    outline: none;
}

.landing-dock-ico {
    display: flex;
    color: inherit;
}

@media (min-width: 900px) {
    .landing-dock {
        display: none;
    }

    .landing-page {
        padding-bottom: 0;
    }
}

.landing-tenants-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.landing-store-search {
    margin: 0 0 0.9rem;
    display: grid;
    gap: 0.45rem;
}

.landing-store-search input {
    width: 100%;
    border: 1px solid var(--l-border);
    border-radius: 12px;
    background: var(--l-card);
    color: var(--l-ink);
    font-size: 0.95rem;
    padding: 0.72rem 0.85rem;
    box-shadow: 0 1px 0 rgba(28, 25, 23, 0.04);
}

.landing-store-search input:focus {
    outline: 2px solid rgba(194, 65, 12, 0.35);
    border-color: #fdba74;
}

.landing-store-search small {
    color: var(--l-muted-2);
    font-weight: 700;
    font-size: 0.78rem;
}

.landing-store-search-empty {
    margin-top: 0.8rem;
}

.landing-tenant-card {
    background: var(--l-card);
    border-radius: var(--l-radius);
    box-shadow: var(--l-shadow);
    padding: 1rem;
    display: grid;
    gap: 0.75rem;
    border: 1px solid var(--l-border);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.landing-tenant-card--demo {
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(199, 210, 254, 0.7);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.landing-tenant-demo-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.62rem 0.78rem;
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.98), rgba(56, 189, 248, 0.92));
    color: #fff;
}

.landing-tenant-demo-pill,
.landing-tenant-demo-status {
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    border-radius: 999px;
    padding: 0.2rem 0.52rem;
}

.landing-tenant-demo-pill {
    background: rgba(255, 255, 255, 0.2);
}

.landing-tenant-demo-status {
    background: rgba(16, 185, 129, 0.88);
}

.landing-tenant-demo-body {
    padding: 0.88rem 0.9rem 0.95rem;
    display: grid;
    gap: 0.7rem;
}

.landing-tenant-demo-nav {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.landing-tenant-demo-nav span {
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.22rem 0.55rem;
    color: #1e3a8a;
    background: #eef4ff;
    border: 1px solid #dbeafe;
}

.landing-tenant-enter {
    min-height: 2.65rem;
    font-weight: 800;
}

.landing-tenant-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--l-shadow-lg);
    border-color: #c7d2fe;
}

.landing-tenant-head {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0.65rem;
    align-items: start;
}

.landing-tenant-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--l-media-bg);
    border: 1px solid var(--l-border);
}

.landing-tenant-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-tenant-logo--placeholder img {
    object-fit: contain;
    padding: 12%;
    box-sizing: border-box;
}

.landing-tenant-head h3 {
    margin: 0 0 0.2rem;
    font-size: 1.04rem;
}

.landing-tenant-head p {
    margin: 0;
    color: var(--l-muted-2);
    font-size: 0.9rem;
    line-height: 1.35;
}

.landing-tenant-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.landing-tenant-meta span,
.landing-tenant-meta-wa {
    background: var(--l-chip-bg);
    color: var(--l-ink-soft);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.58rem;
    border: 1px solid var(--l-border);
}

.landing-tenant-meta-wa {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--l-accent);
    border-color: rgba(165, 180, 252, 0.65);
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.12s ease;
}

.landing-tenant-meta-wa:hover,
.landing-tenant-meta-wa:focus-visible {
    background: rgba(238, 242, 255, 0.95);
    border-color: var(--l-accent);
    outline: none;
    transform: translateY(-1px);
}

.landing-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.landing-category-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--mm-shadow);
    padding: 0.85rem;
}

.landing-category-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 0.7rem;
}

.landing-category-card h3 {
    margin-bottom: 0.35rem;
}

.landing-category-card p {
    color: var(--l-muted-2);
    margin: 0;
}

.landing-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.landing-product {
    position: relative;
    background: var(--l-card);
    border-radius: var(--l-radius);
    box-shadow: var(--l-shadow);
    padding: 0.85rem;
    border: 1px solid var(--l-border);
    transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

.landing-product-media {
    margin: 0;
    border-radius: var(--l-radius-sm);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 100%;
    background: var(--l-media-bg);
    display: grid;
    place-items: center;
}

.landing-product-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-product-media--vector img {
    object-fit: contain;
    padding: 10%;
    box-sizing: border-box;
}

.landing-discount {
    position: absolute;
    left: 1.05rem;
    top: 1rem;
    z-index: 1;
    background: var(--l-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.28rem 0.62rem;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
}

.landing-discount--soft {
    background: linear-gradient(90deg, var(--l-violet), var(--l-accent));
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.landing-product h3 {
    margin: 0.75rem 0 0.2rem;
    font-size: 1.05rem;
}

.landing-price {
    margin: 0;
    color: var(--l-teal-dark);
    font-weight: 900;
    font-size: 1.06rem;
}

.landing-price small {
    color: var(--l-muted-2);
    text-decoration: line-through;
    font-weight: 700;
    margin-left: 0.35rem;
}

.landing-product-store {
    margin: 0.35rem 0 0.8rem;
    color: var(--l-muted-2);
    font-size: 0.86rem;
    font-weight: 600;
}

.landing-product-placeholder {
    border: 1px dashed #bfd1ec;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.landing-product-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-product-link:hover,
.landing-product-link:focus-visible {
    transform: translateY(-4px);
    border-color: #c7d2fe;
    box-shadow: var(--l-shadow-lg);
    outline: none;
}

.landing-product-link:hover .landing-product-media:not(.landing-product-media--vector) img,
.landing-product-link:focus-visible .landing-product-media:not(.landing-product-media--vector) img {
    transform: scale(1.06);
}

.landing-products-featured .landing-product-link {
    background: linear-gradient(180deg, var(--l-card) 0%, #fffdfb 100%);
}

.landing-product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.2rem;
    color: var(--l-accent);
    font-weight: 800;
    font-size: 0.82rem;
}

.landing-product-cta::after {
    content: '\2192';
    font-size: 0.95em;
    transition: transform 0.2s ease;
}

.landing-product-link:hover .landing-product-cta::after,
.landing-product-link:focus-visible .landing-product-cta::after {
    transform: translateX(3px);
}

.landing-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Bloques reutilizables con glassmorfismo (vitrina, publicidad, cards) */
.landing-glass-panel {
    --lg-glass-bg: rgba(255, 255, 255, 0.5);
    --lg-glass-border: rgba(255, 255, 255, 0.72);
    background: var(--lg-glass-bg);
    backdrop-filter: blur(20px) saturate(1.35);
    -webkit-backdrop-filter: blur(20px) saturate(1.35);
    border: 1px solid var(--lg-glass-border);
    border-radius: var(--l-radius, 1rem);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 4px 24px rgba(15, 23, 42, 0.06),
        0 20px 48px -28px rgba(79, 70, 229, 0.2);
}

.landing-chips-hint {
    margin: 0.35rem 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--l-muted-2, #64748b);
    max-width: 52ch;
}

.landing-chips-hint a {
    color: var(--l-accent, #4f46e5);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.landing-chips-hint a:hover,
.landing-chips-hint a:focus-visible {
    color: var(--l-accent-hover, #4338ca);
    outline: none;
}

.landing-vitrine-ads {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.landing-vitrine-ads-header {
    margin-bottom: 0.9rem;
    padding: 1rem 1.15rem 1.05rem;
}

.landing-vitrine-ads-header .landing-h2 {
    margin: 0 0 0.35rem;
}

.landing-vitrine-ads-header .landing-section-sub {
    margin: 0;
}

.landing-vitrine-ads-track {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    padding: 0.2rem 0.1rem 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.landing-vitrine-ad-card {
    flex: 0 0 min(100%, 22rem);
    max-width: 22rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
    padding: 0.85rem 0.95rem 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.landing-vitrine-ad-card:hover,
.landing-vitrine-ad-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(165, 180, 252, 0.95) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 32px rgba(79, 70, 229, 0.14) !important;
    outline: none;
}

.landing-vitrine-ad-media {
    margin: -0.85rem -0.95rem 0.75rem;
    border-radius: calc(var(--l-radius, 1rem) - 4px);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(140deg, rgba(79, 70, 229, 0.08) 0%, rgba(15, 23, 42, 0.04) 100%);
}

.landing-vitrine-ad-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-vitrine-ad-kicker {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--l-accent, #4f46e5);
    margin-bottom: 0.35rem;
}

.landing-vitrine-ad-title {
    font-size: 1.1rem;
    line-height: 1.2;
    margin: 0 0 0.4rem;
    color: var(--l-ink, #0f172a);
    font-weight: 800;
}

.landing-vitrine-ad-text {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--l-muted, #475569);
    flex: 1;
    min-height: 0;
}

.landing-vitrine-ad-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--l-accent, #4f46e5);
    margin-top: auto;
    padding-top: 0.25rem;
}

.landing-vitrine-ad-cta::after {
    content: "\2192";
    transition: transform 0.2s ease;
    font-size: 1.05em;
}

.landing-vitrine-ad-card:hover .landing-vitrine-ad-cta::after,
.landing-vitrine-ad-card:focus-visible .landing-vitrine-ad-cta::after {
    transform: translateX(3px);
}

.landing-pagination {
    width: 100%;
}

.landing-pagination-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem 0.85rem;
}

.landing-pagination-meta {
    color: var(--l-muted-2, #64748b);
    font-size: 0.88rem;
    font-weight: 600;
}

.landing-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.25rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    border: 1px solid rgba(79, 70, 229, 0.35);
    background: rgba(255, 255, 255, 0.65);
    color: var(--l-accent, #4f46e5);
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.landing-pagination-btn:hover:not(.is-disabled),
.landing-pagination-btn:focus-visible:not(.is-disabled) {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.55);
    outline: none;
}

.landing-pagination-btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    color: var(--l-muted-2, #94a3b8);
    border-color: rgba(148, 163, 184, 0.4);
}

.landing-pagination-block {
    display: flex;
    justify-content: center;
    margin-top: 1.35rem;
    padding: 0.85rem 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--l-radius, 1rem);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 20px rgba(15, 23, 42, 0.05);
}

.landing-tenant-chips {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.landing-tenant-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.58rem 0.95rem;
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    border-radius: 999px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 2px 14px rgba(15, 23, 42, 0.07);
    color: var(--l-ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.65);
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.landing-chip-logo {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.landing-chip-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-chip-logo--placeholder img {
    object-fit: contain;
    padding: 14%;
    box-sizing: border-box;
}

.landing-tenant-chip:hover,
.landing-tenant-chip:focus-visible {
    border-color: rgba(165, 180, 252, 0.95);
    color: var(--l-accent);
    outline: none;
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 6px 20px rgba(79, 70, 229, 0.12);
}

.is-hidden {
    display: none !important;
}

@media (max-width: 980px) {
    .landing-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .landing-products-grid {
        grid-template-columns: 1fr;
    }
}

.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.landing-feature {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--mm-shadow);
    padding: 1rem;
}

.landing-feature h3 {
    margin-bottom: 0.35rem;
}

.landing-feature p {
    margin: 0;
    color: var(--l-muted-2);
}

.landing-social-proof {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1rem;
}

.landing-testimonial,
.landing-cta-card {
    background: var(--l-card);
    border-radius: var(--l-radius);
    box-shadow: var(--l-shadow);
    padding: 1.15rem;
    border: 1px solid var(--l-border);
}

.landing-cta-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    color: var(--l-ink);
}

.landing-testimonial .landing-h2 {
    margin-bottom: 0.5rem;
}

.landing-testimonial p {
    color: var(--l-ink-soft);
    font-size: 1.04rem;
    line-height: 1.5;
}

.landing-testimonial span {
    display: inline-block;
    margin-top: 0.2rem;
    color: var(--l-muted-2);
    font-weight: 700;
}

.landing-cta-card p {
    color: var(--l-muted-2);
}

.landing-top-dot {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--l-accent-bright);
    margin-right: 0.35rem;
    vertical-align: 0.08em;
}

.landing-lead {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--l-muted);
    margin-bottom: 0;
}

.landing-hero-aside-heading {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--l-ink);
    margin: 0 0 0.4rem;
}

.landing-dual-path {
    background: linear-gradient(180deg, #f5f5f4 0%, var(--l-surface) 100%);
    border-top: 1px solid var(--l-border);
    border-bottom: 1px solid var(--l-border);
    padding: 1.35rem 0;
}

.landing-dual-path-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.landing-dual-path-card {
    background: var(--l-card);
    border-radius: 18px;
    padding: 1.15rem 1.2rem;
    box-shadow: var(--mm-shadow);
    border: 1px solid var(--l-border);
    border-left: 4px solid var(--l-accent-bright);
}

.landing-dual-path-card--merchant {
    border-left-color: var(--l-teal);
}

.landing-dual-path-title {
    margin: 0 0 0.45rem;
    font-size: 1.12rem;
    color: var(--l-ink);
}

.landing-dual-path-text {
    margin: 0 0 0.85rem;
    color: var(--l-muted-2);
    font-size: 0.95rem;
    line-height: 1.45;
}

.landing-dual-path-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.landing-kicker--on-dark {
    background: rgba(255, 255, 255, 0.12);
    color: #e0e7ff;
    border: 1px solid rgba(199, 210, 254, 0.35);
}

.landing-merchant-band {
    background:
        radial-gradient(circle at 15% 30%, rgba(99, 102, 241, 0.35), transparent 50%),
        radial-gradient(circle at 92% 20%, rgba(124, 58, 237, 0.25), transparent 42%),
        linear-gradient(155deg, #1e1b4b 0%, #312e81 45%, #0f172a 100%);
    color: #e2e8f0;
}

.landing-merchant-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 1.35rem;
    align-items: start;
}

.landing-merchant-intro .landing-kicker {
    margin-bottom: 0.65rem;
}

.landing-merchant-intro h2 {
    color: #f8fafc;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    line-height: 1.2;
    margin: 0 0 0.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.landing-merchant-lead {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    line-height: 1.55;
    color: #d6d3d1;
}

.landing-merchant-bullets {
    margin: 0;
    padding-left: 1.15rem;
    color: #a8a29e;
    line-height: 1.55;
    font-size: 0.98rem;
}

.landing-merchant-bullets li {
    margin-bottom: 0.45rem;
}

.landing-merchant-card {
    background: #fff;
    color: #344054;
    border-radius: 20px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.landing-merchant-card-title {
    margin: 0 0 0.75rem;
    font-size: 1.08rem;
    color: var(--l-ink);
}

.landing-merchant-steps {
    margin: 0 0 1.1rem;
    padding-left: 1.2rem;
    color: var(--l-muted);
    line-height: 1.5;
    font-size: 0.96rem;
}

.landing-merchant-steps li {
    margin-bottom: 0.55rem;
}

.landing-merchant-cta-block {
    display: grid;
    gap: 0.65rem;
}

.landing-merchant-note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--l-muted);
    line-height: 1.45;
}

.landing-merchant-note code {
    font-size: 0.78rem;
    background: #f2f4f7;
    padding: 0.12rem 0.35rem;
    border-radius: 6px;
    color: #1f2937;
}

.landing-merchant-note--standout {
    color: var(--l-ink-soft);
    font-weight: 600;
}

.landing-page .btn-primary {
    background: linear-gradient(125deg, #4338ca, #6366f1);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.landing-page .btn-primary:hover,
.landing-page .btn-primary:focus-visible {
    background: linear-gradient(125deg, #3730a3, #4f46e5);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
}

.landing-page .btn-secondary {
    background: #f8fafc;
    color: var(--l-accent);
    border: 1px solid #c7d2fe;
}

.landing-page .btn-secondary:hover,
.landing-page .btn-secondary:focus-visible {
    background: var(--l-accent-soft);
}

.landing-page .btn-ghost {
    border-color: var(--l-border);
    color: var(--l-ink-soft);
}

.landing-page .btn-ghost:hover,
.landing-page .btn-ghost:focus-visible {
    background: rgba(79, 70, 229, 0.06);
}

.landing-quote {
    margin: 0;
    border: none;
    padding: 0;
}

.landing-quote p {
    margin: 0;
}

.landing-quote-by {
    display: inline-block;
    margin-top: 0.65rem;
    color: var(--l-muted);
    font-weight: 700;
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3,
    .stats,
    .hero,
    .form-grid,
    .product-grid,
    .grid-products,
    .landing-hero,
    .landing-tenants-grid,
    .landing-categories,
    .landing-products,
    .landing-feature-grid,
    .landing-social-proof,
    .landing-dual-path-inner,
    .landing-merchant-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .topbar .container {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links {
        justify-content: center;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .landing-tenant-card,
    .landing-product,
    .landing-testimonial,
    .landing-cta-card,
    .landing-merchant-card {
        border-radius: 14px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
    }

    /* Títulos de sección (catálogo, destacados, etc.): aire + cristal; antes padding casi nulo */
    .landing-section-head:not(.landing-section-head--glass) {
        border-radius: 16px;
        padding: 1.1rem 1.2rem 1.15rem;
        align-items: flex-start;
        gap: 0.65rem;
        background: rgba(255, 255, 255, 0.52);
        backdrop-filter: blur(20px) saturate(1.32);
        -webkit-backdrop-filter: blur(20px) saturate(1.32);
        border: 1px solid rgba(255, 255, 255, 0.72);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.85),
            0 8px 28px rgba(15, 23, 42, 0.08);
        margin-bottom: 1.05rem;
    }

    .landing-section-head:not(.landing-section-head--glass) .landing-h2 {
        margin-bottom: 0.45rem;
        line-height: 1.2;
    }

    .landing-section-head:not(.landing-section-head--glass) .landing-section-sub {
        font-size: 0.92rem;
        line-height: 1.45;
        max-width: 36rem;
    }

    .landing-section-head:not(.landing-section-head--glass).landing-section-head--row {
        align-items: center;
        padding: 1rem 1.15rem;
    }

    .landing-glass-stack--tenants .landing-section-head.landing-section-head--glass {
        border: none;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        padding: 0;
        margin-bottom: 0.65rem;
    }

    .landing-tenant-card,
    .landing-product {
        padding: 0.75rem;
    }

    .landing-tenant-chip {
        padding: 0.6rem 0.92rem;
        font-size: 0.94rem;
    }

    .landing-chip-logo {
        width: 32px;
        height: 32px;
    }

    .landing-tenant-card--demo {
        padding: 0;
        border-radius: 18px;
    }

    .landing-tenant-demo-body {
        padding: 0.8rem 0.78rem 0.85rem;
        gap: 0.62rem;
    }

    .landing-tenant-demo-top {
        padding: 0.56rem 0.7rem;
    }

    .landing-tenant-demo-pill,
    .landing-tenant-demo-status {
        font-size: 0.66rem;
    }

    .landing-product-media {
        border-radius: 12px;
    }

    .landing-tenant-logo {
        border-radius: 12px;
    }

    .landing-social-proof,
    .landing-merchant-inner {
        gap: 0.75rem;
    }

    .landing-testimonial,
    .landing-cta-card,
    .landing-merchant-card {
        padding: 0.95rem;
    }

    .landing-merchant-card {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }
}

/* —— Tienda pública (estilo ecommerce) —— */
.store-tbc {
    --tbc-nav: #00aeef;
    --tbc-pill: #ff0080;
    --tbc-text-on-nav: #ffffff;
    --tbc-announcement-bg: #7a7a7a;
    --tbc-announcement-fg: #f8fafc;
    min-height: 100vh;
    background: #ffffff;
    overflow-x: clip;
}

.store-tbc-announcement {
    position: relative;
    z-index: 50;
    background: linear-gradient(90deg, var(--tbc-announcement-bg), var(--tbc-announcement-bg-secondary, var(--tbc-announcement-bg)));
    color: var(--tbc-announcement-fg);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0.5rem 0.75rem;
}

.store-tbc-announcement-inner {
    width: min(1160px, 94%);
    margin: 0 auto;
    position: relative;
    min-height: 1.1rem;
}

.store-tbc-announcement-track {
    position: relative;
}

.store-tbc-announcement-item {
    margin: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.store-tbc-announcement-item.is-active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.store-tbc-top {
    position: sticky;
    top: 0;
    z-index: 55;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    transition: box-shadow 0.28s ease, transform 0.28s ease, background-color 0.28s ease;
}

.store-tbc-top.is-sticky-active {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
    animation: storeHeaderSlideIn 0.24s ease both;
}

@keyframes storeHeaderSlideIn {
    from {
        opacity: 0.92;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-tbc-top-inner {
    width: min(1260px, 96%);
    margin: 0 auto;
    padding: 0.7rem 0;
    display: grid;
    grid-template-columns: minmax(160px, 250px) minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
}

.store-tbc-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--tbc-nav);
    min-width: 0;
}

.store-tbc-menu-btn {
    display: none;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    padding: 6px 5px;
    cursor: pointer;
}

.store-tbc-menu-btn span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #38a3ff;
}

.store-tbc-brand-logo {
    width: 70px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

.store-tbc-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    min-width: 0;
}

.store-tbc-brand-small {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ef476f;
}

.store-tbc-brand-name {
    font-size: clamp(1.65rem, 2.8vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: #2356a8;
}

.store-tbc-search {
    display: flex;
    align-items: stretch;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}

.store-tbc-search input {
    flex: 1;
    border: 0;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    min-width: 0;
    color: #475569;
}

.store-tbc-search input:focus {
    outline: none;
}

.store-tbc-search-btn {
    border: 0;
    background: #e5e7eb;
    padding: 0 1rem;
    cursor: pointer;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-tbc-actions {
    position: relative;
    z-index: 51;
    display: flex;
    gap: 0.55rem;
    justify-content: flex-end;
}

.store-tbc-icon-link {
    color: #38a3ff;
    padding: 0.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.store-tbc-action-text {
    display: none;
}

.store-tbc-icon-link:hover {
    background: #f0f9ff;
}

.store-tbc-cart-link {
    position: relative;
}

.store-tbc-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: var(--tbc-pill, #ff0080);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #fff;
}

.store-tbc-nav {
    position: relative;
    z-index: 50;
    background: var(--tbc-nav);
    color: var(--tbc-text-on-nav);
}

.store-tbc-nav-inner {
    width: min(1260px, 96%);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.6rem;
    padding: 0.42rem 0;
    align-items: center;
    justify-content: center;
}

.store-tbc-nav-link {
    color: inherit;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.84rem;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
    text-transform: uppercase;
}

.store-tbc-nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

.store-tbc-nav-link.is-active {
    background: rgba(255, 255, 255, 0.18);
}

.store-tbc-nav-link.is-highlight {
    background: var(--tbc-pill);
    color: #fff;
}

.store-tbc-nav-link.is-highlight:hover {
    filter: brightness(1.05);
}

.store-tbc-mobile-menu-backdrop,
.store-tbc-mobile-menu,
.store-tbc-mobile-cart,
.store-tbc-mobile-dock {
    display: none;
}

.store-tbc-shell {
    width: min(1260px, 96%);
    margin: 0 auto;
    padding-bottom: 2.5rem;
}

.store-tbc-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid #dbe1ea;
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    font-size: 0.78rem;
    text-decoration: none;
    white-space: nowrap;
}

.store-tbc-back-link:hover {
    background: #f1f5f9;
    border-color: #c8d9f2;
}

.store-tbc-back-row {
    padding: 0.45rem 0.75rem 0.25rem;
}

@media (min-width: 768px) {
    .store-tbc-back-row {
        padding-left: 0.35rem;
    }
}

.store-social-strip {
    width: min(1260px, 96%);
    margin: 0.35rem auto 1rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.store-social-strip a {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #dbe1ea;
    background: #fff;
    color: #1f2a44;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
}

.store-floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.35);
}

.store-floating-whatsapp:hover {
    background: #16a34a;
}

.store-floating-whatsapp img {
    width: 1.65rem;
    height: 1.65rem;
    display: block;
}

@media (max-width: 767px) {
    .store-floating-whatsapp {
        right: 0.75rem;
        bottom: 5.05rem;
        width: 2.45rem;
        height: 2.45rem;
        box-shadow: 0 8px 18px rgba(34, 197, 94, 0.26);
    }

    .store-floating-whatsapp img {
        width: 1.2rem;
        height: 1.2rem;
    }
}

@media (min-width: 768px) {
    /* En desktop mantenemos solo la cabecera sticky; categorías siguen con scroll normal. */
    nav.store-tbc-nav {
        position: static;
        top: auto;
    }

    .store-tbc-top {
        border-bottom: 1px solid #e5e7eb;
        box-shadow: none;
    }

    .store-tbc-top-inner {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) auto;
        gap: 1.2rem;
        padding: 0.75rem 0;
    }

    .store-tbc-brand {
        gap: 0.6rem;
    }

    .store-tbc-brand-logo {
        width: 74px;
        height: 54px;
    }

    .store-tbc-search {
        max-width: 560px;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        box-shadow: none;
    }

    .store-tbc-search input {
        padding: 0.72rem 0.95rem;
        font-size: 0.94rem;
    }

    .store-tbc-search-btn {
        min-width: 46px;
        background: #f3f4f6;
        color: #6b7280;
    }

    .store-tbc-actions {
        gap: 0.4rem;
    }

    .store-tbc-icon-link {
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid transparent;
        background: transparent;
        color: #3b82f6;
        box-shadow: none;
    }

    .store-tbc-icon-link:hover {
        background: #f8fafc;
        border-color: #e5e7eb;
        transform: none;
    }

    .store-tbc-action-text {
        display: none;
    }

    .store-tbc-cart-badge {
        top: -3px;
        right: -3px;
        min-width: 18px;
        height: 18px;
        font-size: 0.66rem;
    }

    .store-tbc-nav {
        background: var(--tbc-nav);
        color: #fff;
        margin-top: 0;
    }

    .store-tbc-nav-inner {
        width: min(1260px, 96%);
        padding: 0.38rem 0;
        gap: 0.15rem 0.45rem;
        justify-content: center;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .store-tbc-nav-link {
        font-size: 0.76rem;
        letter-spacing: 0.05em;
        padding: 0.3rem 0.5rem;
        border-radius: 4px;
        opacity: 1;
        transition: background 0.15s ease, color 0.15s ease;
    }

    .store-tbc-nav-link:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: none;
    }

    .store-tbc-nav-link.is-active {
        background: rgba(255, 255, 255, 0.16);
        box-shadow: none;
    }
}

.tbc-hero-wrap {
    margin: 0 0 1.1rem;
}

.tbc-hero-wrap-full {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.tbc-hero {
    position: relative;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: none;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

.tbc-hero {
    --tbc-hero-ratio-desktop: 26.7%;
    --tbc-hero-ratio-mobile: 80%;
}

.tbc-hero-fallback img {
    width: 100%;
    display: block;
    vertical-align: middle;
}

.tbc-hero-slides {
    position: relative;
    height: 0;
    padding-bottom: var(--tbc-hero-ratio-desktop);
    overflow: hidden;
}

.tbc-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 0;
}

/* Los hijos heredan «auto» por defecto y capturan clics aun con opacidad 0; bloqueamos toda la rama inactiva */
.tbc-hero-slide:not(.is-active),
.tbc-hero-slide:not(.is-active) * {
    pointer-events: none !important;
}

.tbc-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.tbc-hero-slide.is-active *,
.tbc-hero-slide.is-active .tbc-hero-slide-link {
    pointer-events: auto;
}

.tbc-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.05);
    transition: transform 5.5s ease;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.tbc-hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.tbc-hero-slide.is-active img {
    transform: scale(1);
}

@media (min-width: 768px) {
    .tbc-hero-slide img {
        /* En desktop priorizamos ver el banner completo sin recortes agresivos. */
        object-fit: contain;
        background: #ffffff;
    }
}

.tbc-hero-slide-link {
    display: block;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.tbc-hero-caption {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    right: auto;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 12px;
    padding: 0.55rem 0.8rem;
    max-width: min(360px, 82%);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.82rem;
    color: #0f172a;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.tbc-hero-caption strong {
    font-size: 0.92rem;
}

.tbc-hero-slide.is-active .tbc-hero-caption {
    opacity: 1;
    transform: translateY(0);
}

.tbc-hero-dots {
    position: absolute;
    left: auto;
    right: 5.1rem;
    bottom: 1.1rem;
    z-index: 3;
    display: flex;
    gap: 0.45rem;
    align-items: center;
    width: 88px;
}

.tbc-hero-dot {
    position: relative;
    flex: 1 1 0;
    min-width: 24px;
    height: 3px;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
}

.tbc-hero-dot span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: rgba(255, 255, 255, 0.96);
    border-radius: inherit;
}

.tbc-hero-dot.is-active span {
    width: 100%;
}

.tbc-hero-dot.is-animating span {
    width: 0;
    animation: tbcHeroProgress 5s linear forwards;
}

@keyframes tbcHeroProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.tbc-hero-controls {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.tbc-hero-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    color: #475569;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.tbc-hero-btn:hover {
    background: #fff;
    color: var(--tbc-nav);
    transform: scale(1.05);
}

.tbc-licenses {
    margin-bottom: 1.5rem;
}

.tbc-licenses-scroll {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
}

.tbc-license-card {
    flex: 0 0 auto;
    width: 92px;
    height: 92px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--mm-shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tbc-license-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.tbc-license-img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem;
}

.tbc-license-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.store-tbc-section {
    margin-top: 1.75rem;
}

.store-tbc-section-muted {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1rem;
    border: 1px solid #e2e8f0;
}

.store-tbc-section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.store-tbc-section-head h2 {
    margin: 0;
    font-size: 1.25rem;
}

.store-tbc-link-all {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--tbc-nav);
    text-decoration: none;
}

.store-tbc-link-all:hover {
    text-decoration: underline;
}

.store-tbc-map-section .store-tbc-section-head {
    display: block;
    margin-bottom: 0.85rem;
}

.store-tbc-map-lead {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.45;
}

.store-tbc-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #e2e8f0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.store-tbc-map-wrap iframe {
    display: block;
    width: 100%;
    height: min(48vh, 400px);
    min-height: 220px;
    border: 0;
}

.store-tbc-map-foot {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.store-tbc-map-link {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--tbc-nav, #00aeef);
    text-decoration: none;
}

.store-tbc-map-link:hover {
    text-decoration: underline;
}

.tbc-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.tbc-catalog-grid {
    margin-top: 1rem;
}

.tbc-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
}

.tbc-product-card-img {
    display: block;
    aspect-ratio: 1;
    background: #f8fafc;
}

.tbc-product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tbc-product-card-body {
    padding: 0.85rem 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.tbc-product-card-body h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
}

.tbc-product-cat {
    color: #64748b;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tbc-product-price {
    margin: 0;
    font-weight: 900;
    color: var(--mm-primary, #0e5c8e);
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 0.78rem;
    font-size: 0.88rem;
    border-radius: 10px;
}

.btn-ghost {
    background: transparent;
    color: #175172;
    border: 1px dashed #b8cfe8;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: rgba(23, 81, 114, 0.06);
    outline: none;
}

.tbc-empty {
    grid-column: 1 / -1;
}

.tbc-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tbc-category-chips-spaced {
    margin-bottom: 0.5rem;
}

.tbc-chip {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0c4a6e;
    font-weight: 800;
    font-size: 0.84rem;
    text-decoration: none;
}

.tbc-chip:hover {
    background: #bae6fd;
}

.tbc-chip.is-active {
    background: var(--tbc-nav);
    color: #fff;
}

.tbc-category-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.tbc-category-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    min-height: 170px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tbc-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.tbc-category-card img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    display: block;
}

.tbc-category-card-label {
    position: absolute;
    left: 0.7rem;
    bottom: 0.7rem;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    font-weight: 900;
    font-size: 1.05rem;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
}

/* Collage categorías (estilo inicio referencia) */
.mm-collage-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.75rem;
}

.mm-collage-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
}

.mm-collage-item.is-square {
    grid-column: span 3;
    aspect-ratio: 1 / 1;
}

.mm-collage-item.is-rect {
    grid-column: span 6;
    aspect-ratio: 2 / 1;
}

.mm-collage-media,
.mm-collage-media img {
    width: 100%;
    height: 100%;
}

.mm-collage-media img {
    object-fit: cover;
    display: block;
    transition: transform 0.28s ease;
}

.mm-collage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.02) 55%);
    display: flex;
    align-items: end;
    padding: 0.8rem;
}

.mm-collage-title {
    display: inline-block;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    font-weight: 900;
    font-size: 0.92rem;
}

.mm-collage-item:hover .mm-collage-media img {
    transform: scale(1.03);
}

.store-tbc-page-head {
    margin: 1.25rem 0 0.5rem;
}

.store-tbc-page-title {
    margin: 0;
    font-size: 1.5rem;
}

.store-tbc-page-sub {
    margin: 0.35rem 0 0;
    color: #64748b;
}

.store-tbc-breadcrumb {
    font-size: 0.88rem;
    color: #64748b;
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}

.store-tbc-breadcrumb a {
    color: var(--tbc-nav);
    font-weight: 700;
    text-decoration: none;
}

.tbc-product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
    align-items: start;
}

.tbc-product-detail-media {
    background: #fff;
    border-radius: 18px;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
}

.tbc-product-detail-media img {
    width: 100%;
    border-radius: 14px;
    max-height: 480px;
    object-fit: cover;
}

.tbc-product-badge {
    display: inline-block;
    margin: 0 0 0.5rem;
    background: #e0f2fe;
    color: #0369a1;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.tbc-product-detail-title {
    margin: 0 0 0.5rem;
    font-size: 1.65rem;
    line-height: 1.2;
}

.tbc-product-detail-price {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--mm-primary, #0e5c8e);
    margin: 0 0 1rem;
}

.tbc-product-detail-desc {
    color: #475569;
    line-height: 1.55;
    margin: 0 0 1.25rem;
}

.tbc-buy-box {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.tbc-qty-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 130px;
}

.tbc-qty-row label {
    font-size: 0.82rem;
    font-weight: 800;
    color: #334155;
}

.tbc-qty-row input,
.tbc-cart-qty-form input {
    border: 1px solid #dbe3ef;
    border-radius: 10px;
    padding: 0.62rem 0.72rem;
    font: inherit;
}

.tbc-buy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.tbc-inline-cart-link {
    display: inline-flex;
    margin-top: 0.8rem;
    color: var(--tbc-nav);
    font-weight: 800;
    text-decoration: none;
}

.tbc-inline-cart-link:hover {
    text-decoration: underline;
}

.settings-subheading {
    margin: 1.75rem 0 0.5rem;
    font-size: 1.15rem;
}

.settings-subheading-small {
    margin: 1.25rem 0 0.5rem;
    font-size: 1rem;
}

.settings-repeater {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.settings-repeater-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) 140px;
    gap: 0.5rem;
    align-items: center;
}

.settings-repeater-row-tiles {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 2fr);
}

.settings-checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 0.75rem;
}

.settings-checkbox-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
}

.settings-checkbox-item input {
    width: auto;
    margin: 0;
}

/* Carrusel de productos inicio + filtros */
.tbc-showcase {
    margin-top: 1.35rem;
}

.tbc-filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.tbc-filter-pill {
    appearance: none;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #94a3b8;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 0.45rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.tbc-filter-pill:hover {
    border-color: #cbd5e1;
    color: #64748b;
}

.tbc-filter-pill.is-active {
    border: 2px solid var(--tbc-nav);
    color: var(--tbc-nav);
    padding: calc(0.45rem - 1px) calc(1rem - 1px);
    box-shadow: 0 0 0 1px rgba(0, 174, 239, 0.12);
}

.tbc-showcase-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.tbc-showcase-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.25rem 0 0.5rem;
    flex: 1;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.tbc-showcase:not(.is-scrollable) .tbc-showcase-nav {
    visibility: hidden;
    pointer-events: none;
}

.tbc-showcase-track::-webkit-scrollbar {
    height: 6px;
}

.tbc-showcase-track::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.tbc-showcase-nav {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: #e2e8f0;
    color: #475569;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.tbc-showcase-nav:hover {
    background: #cbd5e1;
    color: var(--tbc-nav);
}

.tbc-showcase-card {
    flex: 0 0 min(200px, 72vw);
    scroll-snap-align: start;
}

.tbc-showcase-card.is-filtered-out {
    display: none;
}

.tbc-showcase-card-link {
    position: relative;
    z-index: 1;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #f1f5f9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    height: 100%;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tbc-showcase-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.tbc-showcase-card-visual {
    position: relative;
    aspect-ratio: 1;
    background: #fff;
}

.tbc-showcase-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tbc-showcase-card-body {
    padding: 0.65rem 0.75rem 0.85rem;
}

.tbc-showcase-card-title {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--tbc-nav);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tbc-discount-badge {
    position: absolute;
    left: 0.45rem;
    bottom: 0.45rem;
    background: #1e3a5f;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.tbc-discount-badge-lg {
    font-size: 0.78rem;
    padding: 0.28rem 0.55rem;
}

.tbc-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
}

.tbc-price-current {
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--tbc-nav);
}

.tbc-showcase-card-body .tbc-price-current {
    font-size: 0.88rem;
}

.tbc-price-compare {
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
}

.tbc-showcase-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.15rem;
}

.tbc-cta-wide {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background: var(--tbc-nav);
    color: #fff;
    font-weight: 900;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    padding: 0.75rem 2.5rem;
    border-radius: 10px;
    min-width: min(320px, 100%);
    transition: filter 0.15s ease, transform 0.15s ease;
}

.tbc-cta-wide:hover {
    filter: brightness(1.06);
    color: #fff;
}

.tbc-licenses-section-title {
    margin: 2rem 0 0.85rem;
    text-align: center;
    font-size: clamp(1.15rem, 3vw, 1.45rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tbc-nav);
}

.tbc-product-card-img-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.tbc-product-detail-media-inner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.tbc-product-gallery {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.tbc-product-gallery a,
.tbc-product-gallery-item {
    display: block;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding: 0;
    cursor: pointer;
}

.tbc-product-gallery-item {
    transition: border-color .2s ease, box-shadow .2s ease;
}

.tbc-product-gallery-item.is-active {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.16);
}

.tbc-product-gallery img {
    width: 100%;
    height: 84px;
    object-fit: cover;
    display: block;
}

.product-images-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.product-images-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.product-images-manager {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    margin-bottom: 0.4rem;
}

.product-images-manager-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.product-images-manager-limit {
    font-size: 0.78rem;
    font-weight: 800;
    color: #475467;
    background: #eef2ff;
    border: 1px solid #dbe4ff;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.product-images-manager-help {
    margin: 0;
    color: #64748b;
    font-size: 0.84rem;
}

.product-upload-zone-elevated {
    border-width: 1.5px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.product-current-images-wrap {
    margin-top: 0.35rem;
}

.product-current-images-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.2rem;
    margin-bottom: 0.55rem;
}

.product-current-images-title {
    margin: 0;
    font-weight: 800;
    color: #0f172a;
}

.product-current-images-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 0.82rem;
    max-width: 46ch;
}

.product-image-manage-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    padding: 0.38rem;
    cursor: grab;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.product-image-manage-card:hover {
    border-color: #c9d7f2;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.product-image-manage-card.is-dragging {
    opacity: 0.68;
    transform: scale(0.98);
}

.product-image-manage-card.is-drop-target {
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.product-image-manage-card.is-new {
    border-color: #bfdbfe;
    background: #f8fbff;
}

.product-image-manage-card.is-marked-remove {
    border-color: #fca5a5;
    background: #fff5f5;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.16);
}

.product-image-remove-new {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    border: 1px solid #fecaca;
    background: rgba(255, 255, 255, 0.95);
    color: #b91c1c;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.15rem 0.45rem;
    cursor: pointer;
}

.product-image-remove-new:hover {
    background: #fee2e2;
}

.product-image-remove-old {
    z-index: 2;
}

.product-image-media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.product-image-manage-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.2rem;
}

.product-image-manage-check {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.83rem;
    color: #475467;
    line-height: 1.25;
}

.product-form-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.is-hidden {
    display: none !important;
}

.category-image-preview img {
    width: min(280px, 100%);
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.banner-image-preview img {
    width: min(520px, 100%);
    height: 220px;
}

.category-upload-grid {
    grid-template-columns: minmax(0, 220px);
}

.category-list-thumb {
    width: 72px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    display: block;
}

.product-upload-zone {
    margin-top: 0.35rem;
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.product-upload-zone.is-dragging {
    border-color: var(--tbc-nav, #0ea5e9);
    background: #f0f9ff;
}

.product-upload-zone-inner {
    padding: 1.15rem;
    text-align: center;
}

.product-upload-title {
    margin: 0 0 0.2rem;
    font-weight: 800;
    color: #0f172a;
}

.product-upload-subtitle {
    margin: 0 0 0.75rem;
    color: #64748b;
    font-size: 0.9rem;
}

.product-upload-btn {
    margin: 0 auto;
}

.product-upload-grid {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.product-upload-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.product-upload-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.product-upload-meta {
    margin: 0;
    padding: 0.45rem 0.55rem;
    font-size: 0.78rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tbc-product-detail-price-row {
    margin-bottom: 1rem;
}

.tbc-product-detail-price-row .tbc-price-current {
    font-size: 1.45rem;
}

.tbc-product-detail-price-row .tbc-price-compare {
    font-size: 1rem;
}

.tbc-card-cart-form {
    margin-top: 0.6rem;
}

.tbc-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
    gap: 1.25rem;
    margin-top: 1rem;
    align-items: start;
}

.tbc-cart-list {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.tbc-cart-store-group {
    background: #f8fbff;
    border: 1px solid #dfe9f7;
    border-radius: 20px;
    padding: 0.8rem;
    display: grid;
    gap: 0.75rem;
}

.tbc-cart-store-head {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    padding: 0.3rem 0.3rem 0.1rem;
}

.tbc-cart-store-title {
    margin: 0.1rem 0 0;
    font-size: 1.1rem;
}

.tbc-cart-store-totals {
    text-align: right;
}

.tbc-cart-store-totals span {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
}

.tbc-cart-store-totals strong {
    font-size: 1rem;
    color: #0f172a;
}

.tbc-cart-store-actions {
    display: grid;
    gap: 0.55rem;
}

.tbc-cart-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 0.9rem;
}

.tbc-cart-item-media {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
}

.tbc-cart-item-media img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    display: block;
}

.tbc-cart-item-body {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.tbc-cart-item-title {
    margin: 0.2rem 0 0.35rem;
    font-size: 1.05rem;
    line-height: 1.3;
}

.tbc-cart-item-title a {
    color: #0f172a;
    text-decoration: none;
}

.tbc-cart-item-price {
    margin: 0;
    color: #64748b;
    font-size: 0.92rem;
}

.tbc-cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
    min-width: 168px;
}

.tbc-cart-qty-form {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}

.tbc-cart-qty-form label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
}

.tbc-cart-line-total {
    margin-top: auto;
    font-size: 1.08rem;
    font-weight: 900;
    color: var(--tbc-nav);
}

.tbc-cart-summary {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1rem;
    position: sticky;
    top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tbc-cart-summary h2 {
    margin: 0;
    font-size: 1.2rem;
}

.tbc-cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #334155;
}

.tbc-cart-summary-note {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.store-tbc-mobile-cart-item-store {
    margin: 0.08rem 0 0.16rem;
    color: #64748b;
    font-size: 0.77rem;
    font-weight: 700;
}

.tbc-cart-empty {
    margin-top: 1rem;
    padding: 1.1rem;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: flex-start;
}

@media (max-width: 980px) {
    .store-tbc-top-inner {
        grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) auto;
        text-align: left;
        gap: 0.75rem;
    }

    .store-tbc-brand {
        justify-content: flex-start;
    }

    .store-tbc-search {
        max-width: none;
        margin: 0;
    }

    .store-tbc-actions {
        justify-content: flex-end;
    }

    .tbc-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tbc-category-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mm-collage-item.is-square {
        grid-column: span 6;
    }

    .mm-collage-item.is-rect {
        grid-column: span 6;
        aspect-ratio: 1 / 1;
    }

    .tbc-hero-slides {
        padding-bottom: 42%;
    }

    .tbc-hero-dots {
        right: auto;
        left: 1rem;
        width: calc(100% - 6rem);
    }

    .settings-repeater-row,
    .settings-repeater-row-tiles {
        grid-template-columns: 1fr;
    }

    .tbc-product-detail {
        grid-template-columns: 1fr;
    }

    .tbc-cart-layout {
        grid-template-columns: 1fr;
    }

    .tbc-cart-summary {
        position: static;
    }

    .admin-kpi-grid {
        grid-template-columns: 1fr;
    }

    .admin-head {
        align-items: stretch;
    }

    .admin-settings-layout {
        display: flex;
        flex-direction: column;
        gap: 1.15rem;
    }

    .admin-settings-main {
        order: 2;
    }

    .admin-settings-preview {
        order: -1;
        position: static;
        min-height: auto;
        max-width: min(440px, 100%);
        width: 100%;
        margin: 0 auto 0.25rem;
        align-self: center;
    }

    .admin-settings-stepper {
        top: 4.1rem;
    }

    .admin-settings-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .admin-settings-section-head p {
        max-width: none;
    }

    .admin-settings-inline {
        align-items: stretch;
    }

    .admin-settings-logo-box {
        width: 80px;
        height: 80px;
    }

    .admin-settings-savebar {
        display: flex;
        position: sticky;
        bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
    }

    .admin-settings-preview-hero {
        min-height: 180px;
    }
}

@media (max-width: 767px) {
    body.store-mobile-menu-open {
        overflow: hidden;
    }

    .store-tbc-shell {
        width: 100%;
        padding: 0 0 1.4rem;
    }

    .store-tbc-breadcrumb,
    .tbc-product-detail-info {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .store-tbc-top-inner {
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "menu brand actions"
            "search search search";
        text-align: left;
        gap: 0.6rem 0.75rem;
        padding: 0.6rem 0.75rem;
    }

    .store-tbc-back-row {
        padding: 0.5rem 0.75rem 0.25rem;
    }

    .store-tbc-menu-btn {
        display: block;
        grid-area: menu;
        align-self: center;
    }

    .store-tbc-brand {
        grid-area: brand;
        justify-content: center;
    }

    .store-tbc-actions {
        grid-area: actions;
        justify-content: flex-end;
    }

    .store-tbc-search {
        grid-area: search;
        max-width: none;
    }

    .store-tbc-search input {
        padding: 0.62rem 0.82rem;
        font-size: 0.9rem;
    }

    .store-tbc-search-btn {
        padding: 0 0.85rem;
    }

    .store-tbc-brand-small {
        display: none;
    }

    .store-tbc-brand-logo {
        width: 48px;
        height: 36px;
    }

    .store-tbc-brand-name {
        font-size: 1.12rem;
        line-height: 0.95;
    }

    .admin-settings-stepper-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        padding: 0.1rem 0.15rem;
        gap: 0.2rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .admin-settings-stepper-inner::-webkit-scrollbar {
        display: none;
    }

    .admin-settings-stepper a {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .admin-settings-inline {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-settings-savebar {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.55rem;
        padding: 0.55rem 0.65rem;
    }

    .admin-settings-savebar-copy {
        flex: 0 0 auto;
        width: 100%;
    }

    .admin-settings-savebar-copy strong {
        font-size: 0.9rem;
    }

    .admin-settings-savebar-note {
        display: none;
    }

    .admin-settings-savebar-actions {
        flex-direction: row;
        align-items: stretch;
        gap: 0.5rem;
        width: 100%;
    }

    .admin-settings-savebar-actions .btn {
        flex: 1;
        min-height: 2.55rem;
        justify-content: center;
    }

    .admin-settings-page {
        padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
    }

    .admin-settings-color-field,
    .admin-settings-repeater-row,
    .admin-settings-repeater-row-tiles {
        grid-template-columns: 1fr;
    }

    .admin-settings-choice {
        width: 100%;
        justify-content: flex-start;
    }

    .store-tbc-nav {
        display: none;
    }

    .store-tbc-mobile-menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(2, 6, 23, 0.45);
        z-index: 82;
    }

    .store-tbc-mobile-menu-backdrop[hidden] {
        display: none !important;
    }

    .store-tbc-mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: min(84vw, 330px);
        height: 100vh;
        background: #fff;
        z-index: 83;
        transform: translateX(-100%);
        transition: transform 0.22s ease;
        box-shadow: 0 16px 35px rgba(15, 23, 42, 0.2);
    }

    .store-tbc-mobile-menu.is-open {
        transform: translateX(0);
    }

    .store-tbc-mobile-cart {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(88vw, 360px);
        height: 100vh;
        background: #fff;
        z-index: 83;
        transform: translateX(100%);
        transition: transform 0.22s ease;
        box-shadow: 0 16px 35px rgba(15, 23, 42, 0.2);
    }

    .store-tbc-mobile-cart.is-open {
        transform: translateX(0);
    }

    .store-tbc-mobile-cart-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.65rem;
        padding: 0.9rem 1rem 0.6rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .store-tbc-mobile-cart-head p {
        margin: 0;
        font-size: 1rem;
        font-weight: 800;
        color: #0f172a;
    }

    .store-tbc-mobile-cart-body {
        flex: 1 1 auto;
        overflow-y: auto;
        padding: 0.55rem 0.85rem;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .store-tbc-mobile-cart-item {
        display: grid;
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 0.6rem;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 0.45rem;
        background: #fff;
    }

    .store-tbc-mobile-cart-item-media {
        border-radius: 10px;
        overflow: hidden;
        background: #f8fafc;
    }

    .store-tbc-mobile-cart-item-media img {
        width: 100%;
        height: 74px;
        object-fit: cover;
        display: block;
    }

    .store-tbc-mobile-cart-item-body {
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .store-tbc-mobile-cart-item-name {
        margin: 0;
        color: #0f172a;
        text-decoration: none;
        font-size: 0.82rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .store-tbc-mobile-cart-item-meta {
        margin: 0;
        color: #64748b;
        font-size: 0.76rem;
        font-weight: 600;
    }

    .store-tbc-mobile-cart-item-total {
        margin: 0;
        color: #0b5fca;
        font-size: 0.8rem;
        font-weight: 800;
    }

    .store-tbc-mobile-cart-empty {
        margin: 0.4rem 0 0;
        padding: 0.95rem 0.8rem;
        border: 1px dashed #cbd5e1;
        border-radius: 12px;
        text-align: center;
        color: #64748b;
        font-size: 0.84rem;
    }

    .store-tbc-mobile-cart-foot {
        margin-top: auto;
        padding: 0.75rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid #e5e7eb;
        background: #fff;
    }

    .store-tbc-mobile-cart-subtotal {
        margin: 0 0 0.65rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        color: #334155;
        font-size: 0.84rem;
        font-weight: 700;
    }

    .store-tbc-mobile-cart-subtotal strong {
        color: #0f172a;
        font-size: 0.9rem;
    }

    .store-tbc-mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.8rem 1rem 0.45rem;
    }

    .store-tbc-mobile-menu-close,
    .store-tbc-mobile-menu-cart {
        border: 0;
        background: transparent;
        font-size: 1.45rem;
        line-height: 1;
        color: #0b1b3f;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 2rem;
        min-height: 2rem;
        padding: 0;
    }

    .store-tbc-mobile-menu-body {
        overflow-y: auto;
        padding: 0.2rem 0;
        border-top: 1px solid #e5e7eb;
    }

    .store-tbc-mobile-menu-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.7rem;
        padding: 0.72rem 1rem;
        color: #111827;
        text-decoration: none;
        font-size: 0.86rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        border-bottom: 1px solid #f1f5f9;
    }

    .store-tbc-mobile-menu-link.is-highlight > span:first-child {
        background: var(--tbc-pill);
        color: #fff;
        border-radius: 6px;
        padding: 0.18rem 0.45rem;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 0.78rem;
    }

    .store-tbc-mobile-menu-chevron {
        font-size: 0.95rem;
        color: #334155;
        transform: none;
        opacity: 0.8;
    }

    .store-tbc-mobile-menu-link.is-active {
        background: #f8fafc;
        color: var(--tbc-nav);
    }

    .store-tbc-mobile-menu-foot {
        margin-top: auto;
        padding: 0.85rem 1rem 1rem;
        border-top: 1px solid #e5e7eb;
    }

    .store-tbc-mobile-menu-account {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 96px;
        border-radius: 8px;
        background: #1da1ff;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.82rem;
        padding: 0.45rem 0.72rem;
    }

    .store-tbc-mobile-dock {
        position: fixed;
        left: 50%;
        bottom: max(12px, env(safe-area-inset-bottom));
        transform: translateX(-50%);
        z-index: 79;
        width: min(95%, 355px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.48rem 0.52rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.92);
        background: rgba(255, 255, 255, 0.78);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        box-shadow: 0 0 24px rgba(52, 70, 110, 0.35);
    }

    .store-tbc-mobile-dock-item {
        border: 0;
        background: transparent;
        color: #0f172a;
        text-decoration: none;
        width: 42px;
        height: 42px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        cursor: pointer;
        transition: background 0.15s ease, color 0.15s ease;
    }

    .store-tbc-mobile-dock-item svg {
        width: 20px;
        height: 20px;
    }

    .store-tbc-mobile-dock-item.is-active,
    .store-tbc-mobile-dock-item:hover {
        background: rgba(36, 159, 252, 0.14);
        color: #249ffc;
    }

    .store-tbc-shell {
        padding-bottom: 5rem;
    }

    .tbc-hero-slides {
        padding-bottom: var(--tbc-hero-ratio-mobile);
    }

    .tbc-hero {
        --tbc-hero-ratio-mobile: 65%;
    }

    .tbc-hero-slide img {
        object-fit: contain;
        background: #ffffff;
    }

    .tbc-buy-actions {
        flex-direction: column;
    }

    .tbc-buy-actions .btn {
        width: 100%;
    }

    .tbc-showcase {
        margin-top: 0.95rem;
        padding: 0 0.55rem;
    }

    .tbc-filter-pills {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.45rem;
        padding-bottom: 0.15rem;
        scrollbar-width: none;
    }

    .tbc-filter-pills::-webkit-scrollbar {
        display: none;
    }

    .tbc-filter-pill {
        flex: 0 0 auto;
        font-size: 0.76rem;
        padding: 0.38rem 0.82rem;
    }

    .tbc-filter-pill.is-active {
        padding: calc(0.38rem - 1px) calc(0.82rem - 1px);
    }

    .tbc-showcase-track {
        gap: 0.55rem;
        padding: 0.2rem 0 0.4rem;
    }

    .tbc-showcase-card {
        flex: 0 0 min(160px, 46vw);
    }

    .tbc-showcase-card-body {
        padding: 0.55rem 0.58rem 0.72rem;
    }

    .tbc-showcase-card-title {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .tbc-showcase-card-body .tbc-price-current {
        font-size: 0.8rem;
    }

    .tbc-price-compare {
        font-size: 0.7rem;
    }

    .tbc-showcase-cta-wrap {
        margin-top: 0.9rem;
    }

    .tbc-cta-wide {
        min-width: min(250px, 94%);
        padding: 0.63rem 1.25rem;
        font-size: 0.78rem;
        letter-spacing: 0.06em;
    }

    .tbc-licenses-section-title {
        margin: 1.35rem 0 0.55rem;
        font-size: 1rem;
    }

    .tbc-licenses {
        margin-bottom: 1rem;
        padding: 0 0.55rem;
    }

    .tbc-license-card {
        width: 82px;
        height: 82px;
        border-radius: 12px;
    }

    .store-tbc-section {
        margin-top: 1.05rem;
        padding: 0 0.55rem;
    }

    .store-tbc-section-muted {
        border-radius: 12px;
        padding: 0.8rem 0.72rem;
    }

    .store-tbc-section-head {
        margin-bottom: 0.7rem;
    }

    .store-tbc-section-head h2 {
        font-size: 1rem;
    }

    .tbc-cart-item {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 0.75rem;
        padding: 0.72rem;
    }

    .tbc-cart-store-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .tbc-cart-store-totals {
        text-align: left;
    }

    .tbc-cart-item-media img {
        height: 92px;
    }

    .tbc-cart-item-body {
        flex-direction: column;
    }

    .tbc-cart-item-actions {
        min-width: 0;
        align-items: stretch;
    }

    .tbc-cart-line-total {
        margin-top: 0.15rem;
    }

    .tbc-hero-dots {
        right: auto;
        left: 0.8rem;
        bottom: 0.75rem;
        width: calc(100% - 5rem);
    }
}

@media (max-width: 560px) {
    .super-tenant-section {
        padding: 0.88rem;
        border-radius: 16px;
    }

    .super-tenant-color-preview {
        padding: 0.85rem 0.9rem;
    }

    .super-tenant-color-swatches {
        flex-direction: column;
    }

    .super-tenant-color-chip,
    .super-tenant-color-preview-button,
    .super-tenant-color-preview-pill {
        width: 100%;
        justify-content: center;
    }

    .super-tenant-actions .btn {
        width: 100%;
    }

    .tenant-banners-help {
        padding: 0.82rem 0.88rem;
    }

    .tenant-banner-card {
        padding: 0.82rem;
    }

    .tenant-banner-card-summary {
        grid-template-columns: 1fr;
    }

    .tenant-banner-card-actions {
        flex-direction: column;
    }

    .tenant-banner-card-actions .btn,
    .tenant-banner-card-actions form,
    .tenant-banner-card-actions form button {
        width: 100%;
        justify-content: center;
    }

    .tenant-categories-help {
        padding: 0.82rem 0.88rem;
    }

    .tenant-category-card {
        padding: 0.82rem;
    }

    .tenant-category-card-top {
        gap: 0.75rem;
    }

    .tenant-category-card-media {
        width: 78px;
        height: 60px;
    }

    .tenant-category-card-summary {
        grid-template-columns: 1fr;
    }

    .tenant-category-card-actions {
        flex-direction: column;
    }

    .tenant-category-card-actions .btn,
    .tenant-category-card-actions form,
    .tenant-category-card-actions form button {
        width: 100%;
        justify-content: center;
    }

    .tenant-products-help {
        padding: 0.82rem 0.88rem;
    }

    .tenant-product-card {
        padding: 0.82rem;
    }

    .tenant-product-card-main {
        gap: 0.75rem;
    }

    .tenant-product-card-media {
        width: 82px;
        height: 82px;
    }

    .tenant-product-card-summary {
        grid-template-columns: 1fr;
    }

    .tenant-product-card-actions {
        flex-direction: column;
    }

    .tenant-product-card-actions .btn,
    .tenant-product-card-actions form,
    .tenant-product-card-actions form button {
        width: 100%;
        justify-content: center;
    }

    .tbc-product-grid {
        grid-template-columns: 1fr;
    }

    .tbc-hero-controls {
        display: none;
    }

    .tbc-hero-wrap-full {
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .store-tbc-brand-logo {
        width: 44px;
        height: 34px;
    }

    .store-tbc-brand-name {
        font-size: 1rem;
    }

    .store-tbc-top-inner {
        padding: 0.5rem 0;
        gap: 0.45rem 0.6rem;
    }

    .store-tbc-actions {
        gap: 0.22rem;
    }

    .store-tbc-icon-link {
        padding: 0.24rem;
    }

    .store-tbc-cart-badge {
        min-width: 16px;
        height: 16px;
        font-size: 0.62rem;
    }

    .tbc-showcase-card {
        flex: 0 0 min(150px, 49vw);
    }

    .store-tbc-mobile-dock {
        width: min(96%, 340px);
        padding: 0.42rem 0.44rem;
    }

    .store-tbc-mobile-dock-item {
        width: 40px;
        height: 40px;
    }

    .tbc-showcase-nav {
        display: none;
    }

    .tbc-product-gallery,
    .product-images-preview,
    .product-upload-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-current-images-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-form-actions {
        flex-direction: column;
    }

    .product-form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .tbc-category-cards {
        grid-template-columns: 1fr;
    }

    .mm-collage-item.is-square,
    .mm-collage-item.is-rect {
        grid-column: span 12;
        aspect-ratio: 1 / 1;
    }

    .super-home-mode-toggle label {
        gap: 0.7rem;
    }

    .super-home-mode-switch {
        width: 46px;
        height: 26px;
    }

    .super-home-mode-switch span {
        width: 20px;
        height: 20px;
    }

    .super-home-mode-toggle input[type="checkbox"]:checked + label .super-home-mode-switch span {
        transform: translateX(20px);
    }

    .super-home-mode-form .full .btn {
        width: 100%;
    }

    .super-tenants-table thead {
        display: none;
    }

    .super-tenants-table,
    .super-tenants-table tbody,
    .super-tenants-table tr,
    .super-tenants-table td {
        display: block;
        width: 100%;
    }

    .super-tenants-table tr {
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        padding: 0.65rem 0.7rem;
        margin-bottom: 0.65rem;
        background: #fff;
    }

    .super-tenants-table td {
        border: none;
        padding: 0.32rem 0;
        font-size: 0.9rem;
    }

    .super-tenants-table td[data-label]::before {
        content: attr(data-label) ": ";
        display: inline;
        font-weight: 800;
        color: #334155;
    }

    .super-tenants-table td[data-label="Acciones"]::before {
        display: block;
        margin-bottom: 0.3rem;
    }

    .super-tenants-table td[data-label="Acciones"] .table-actions {
        width: 100%;
    }

    .super-tenants-table td[data-label="Acciones"] .table-actions .btn,
    .super-tenants-table td[data-label="Acciones"] .table-actions form,
    .super-tenants-table td[data-label="Acciones"] .table-actions form button {
        width: 100%;
        justify-content: center;
    }
}
