/* Layout: barra utilitária + nav fixas (referência e-commerce) */
.site-body {
    --store-topbar-h: 2.625rem;
    --store-nav-h: 4.125rem;
    padding-top: calc(var(--store-topbar-h) + var(--store-nav-h));
}

.store-topbar {
    height: var(--store-topbar-h);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #1a1918 0%, #252321 45%, #1a1918 100%);
}

.store-nav {
    min-height: var(--store-nav-h);
}

/* Esconde o widget flutuante do WhatsApp (home) quando o drawer mobile está aberto */
body.store-mobile-menu-open #zap-widget {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.5rem);
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}

/* Esconde a barra CTA fixa do mobile (home) quando o drawer mobile está aberto */
body.store-mobile-menu-open #mobile-cta-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

/* Hero carousel: drag-to-swipe no desktop (cursor grab/grabbing) */
#carousel-inner,
#carousel-inner > a {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

#carousel-inner.is-grabbing,
#carousel-inner.is-grabbing > a {
    cursor: grabbing;
}

#carousel-inner img {
    -webkit-user-drag: none;
    user-drag: none;
}

/* Avaliações Google: grab/drag + paginação por bolinhas */
#avaliacoes-scroll {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

#avaliacoes-scroll.is-grabbing {
    cursor: grabbing;
}

#avaliacoes-scroll.is-grabbing .review-card,
#avaliacoes-scroll.is-grabbing a {
    pointer-events: none;
}

#avaliacoes-scroll img {
    -webkit-user-drag: none;
    user-drag: none;
}

.review-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.review-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.18);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition:
        width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.25s ease,
        opacity 0.25s ease;
}

.review-dot:hover {
    background: rgba(255, 255, 255, 0.45);
}

.review-dot.is-active {
    width: 1.5rem;
    background: #FF8743;
}

/* Footer: links de redes sociais */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-link:hover,
.social-link:focus-visible {
    color: #fff;
    border-color: rgba(255, 135, 67, 0.5);
    background: rgba(255, 135, 67, 0.12);
    transform: translateY(-2px);
}

.social-link svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

/* Contato: cards de canais de atendimento refinados */
.contact-channel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    border-radius: var(--prod-radius-lg, 1.25rem);
    border: 1px solid var(--prod-border, #ece7e2);
    background: var(--prod-surface, #fff);
    padding: 1.35rem 1.35rem 1.45rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.25s ease,
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    color: var(--prod-ink-soft, #574239);
    overflow: hidden;
    isolation: isolate;
}

.contact-channel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 135, 67, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-channel:hover {
    border-color: var(--prod-border-strong, #ddd5cd);
    transform: translateY(-3px);
    box-shadow: var(--prod-shadow-lg, 0 18px 38px -22px rgba(158, 66, 0, 0.35));
}

.contact-channel:hover::before {
    opacity: 1;
}

.contact-channel__icon {
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: var(--prod-accent-soft, rgba(255, 135, 67, 0.10));
    color: var(--prod-accent, #c2410c);
}

.contact-channel__icon .material-symbols-outlined {
    font-size: 1.3rem;
}

.contact-channel__label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(87, 66, 57, 0.7);
}

.contact-channel__value {
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--prod-ink, #1b1c1c);
    line-height: 1.3;
    letter-spacing: -0.005em;
}

.contact-channel__hint {
    font-size: 0.8rem;
    color: rgba(87, 66, 57, 0.7);
    line-height: 1.5;
}

.contact-channel__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    align-self: flex-start;
    margin-top: 0.5rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--prod-border, #ece7e2);
    width: 100%;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--prod-accent, #c2410c);
    transition: gap 0.2s ease, color 0.2s ease;
}

.contact-channel:hover .contact-channel__cta {
    gap: 0.6rem;
    color: var(--prod-accent-strong, #9e4200);
}

/* Produtos: tokens de design da página */
:root {
    --prod-radius-sm: 0.625rem;
    --prod-radius-md: 0.875rem;
    --prod-radius-lg: 1.25rem;
    --prod-radius-xl: 1.5rem;
    --prod-border: #ece7e2;
    --prod-border-strong: #ddd5cd;
    --prod-surface: #ffffff;
    --prod-surface-soft: #fbf9f7;
    --prod-ink: #1b1c1c;
    --prod-ink-soft: #574239;
    --prod-accent: #c2410c;
    --prod-accent-strong: #9e4200;
    --prod-accent-soft: rgba(255, 135, 67, 0.10);
    --prod-shadow-sm: 0 1px 2px rgba(27, 28, 28, 0.04);
    --prod-shadow-md: 0 6px 18px -10px rgba(27, 28, 28, 0.18);
    --prod-shadow-lg: 0 18px 40px -22px rgba(158, 66, 0, 0.25);
}

/* Produtos: breadcrumb refinado */
.prod-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    padding: 0.35rem 0.85rem 0.35rem 0.6rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--prod-border);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(87, 66, 57, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.prod-breadcrumb a {
    color: rgba(87, 66, 57, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.prod-breadcrumb a:hover {
    color: var(--prod-accent);
}

.prod-breadcrumb .material-symbols-outlined {
    font-size: 0.95rem;
    color: rgba(87, 66, 57, 0.4);
}

.prod-breadcrumb__current {
    color: var(--prod-ink);
    font-weight: 700;
}

/* Produtos: header refinado */
.prod-header {
    position: relative;
    margin-bottom: 1.75rem;
    padding: 2rem 1.75rem;
    border-radius: var(--prod-radius-xl);
    background: var(--prod-surface);
    border: 1px solid var(--prod-border);
    overflow: hidden;
    isolation: isolate;
}

@media (min-width: 768px) {
    .prod-header {
        padding: 2.5rem;
    }
}

.prod-header__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 90% at 100% 0%, rgba(255, 135, 67, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 0% 100%, rgba(251, 191, 36, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fdfcfb 100%);
}

.prod-header__content {
    position: relative;
}

.prod-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--prod-accent-strong);
}

.prod-header__eyebrow::before {
    content: "";
    width: 1.25rem;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.prod-header__title {
    margin-top: 0.85rem;
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    font-size: clamp(1.65rem, 1.1rem + 2.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--prod-ink);
}

.prod-header__title span {
    color: var(--prod-accent);
}

.prod-header__lead {
    margin-top: 0.85rem;
    max-width: 36rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--prod-ink-soft);
}

@media (min-width: 768px) {
    .prod-header__lead {
        font-size: 1rem;
    }
}

/* Produtos: campo de busca */
.prod-search {
    position: relative;
    isolation: isolate;
}

.prod-search__icon {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(87, 66, 57, 0.45);
    font-size: 1.2rem;
    transition: color 0.2s ease;
    z-index: 3;
}

.prod-search:focus-within .prod-search__icon {
    color: var(--prod-accent);
}

.prod-search-input {
    width: 100%;
    background: var(--prod-surface);
    border: 1px solid var(--prod-border);
    border-radius: var(--prod-radius-md);
    padding: 0.78rem 4.5rem 0.78rem 2.7rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--prod-ink);
    caret-color: var(--prod-accent);
    box-shadow: var(--prod-shadow-sm);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
    outline: none;
    position: relative;
    z-index: 1;
}

.prod-search-input:hover {
    border-color: var(--prod-border-strong);
}

.prod-search-input:focus {
    border-color: rgba(255, 135, 67, 0.6);
    box-shadow:
        var(--prod-shadow-sm),
        0 0 0 3px rgba(255, 135, 67, 0.12);
}

.prod-search-input::placeholder {
    color: rgba(87, 66, 57, 0.45);
    font-weight: 500;
}

.prod-search-input::-webkit-search-cancel-button,
.prod-search-input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.prod-search-kbd {
    position: absolute;
    right: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    align-items: center;
    gap: 0.2rem;
    padding: 0.18rem 0.4rem;
    border-radius: 0.4rem;
    border: 1px solid var(--prod-border);
    background: var(--prod-surface-soft);
    color: rgba(87, 66, 57, 0.75);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 3;
}

@media (min-width: 1024px) and (hover: hover) {
    .prod-search-kbd {
        display: inline-flex;
    }
}

.prod-search:focus-within .prod-search-kbd {
    opacity: 0;
}

.prod-search-clear {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.7rem;
    height: 1.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(27, 28, 28, 0.04);
    color: rgba(87, 66, 57, 0.7);
    border: 0;
    cursor: pointer;
    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        transform 0.15s ease;
    z-index: 3;
}

.prod-search-clear:hover {
    background: rgba(255, 135, 67, 0.12);
    color: var(--prod-accent);
}

.prod-search-clear:active {
    transform: translateY(-50%) scale(0.92);
}

/* Produtos: stats do header */
.prod-header-stats {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.prod-header-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    background: var(--prod-surface);
    color: var(--prod-ink-soft);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.1;
    border: 1px solid var(--prod-border);
}

.prod-header-stat .material-symbols-outlined {
    font-size: 1rem;
    color: var(--prod-accent);
}

.prod-header-stat strong {
    color: var(--prod-ink);
    font-weight: 700;
}

/* Produtos: toolbar minimalista */
.prod-toolbar {
    z-index: 30;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border: 1px solid var(--prod-border);
    border-radius: var(--prod-radius-lg);
    padding: 0.85rem 1rem;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, var(--prod-shadow-sm);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

@media (min-width: 768px) {
    .prod-toolbar {
        position: sticky;
        top: calc(var(--store-topbar-h) + var(--store-nav-h) + 0.5rem);
        padding: 1rem 1.25rem;
    }
}

.prod-toolbar.is-stuck {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--prod-border-strong);
    box-shadow: 0 10px 28px -18px rgba(27, 28, 28, 0.22);
}

.prod-toolbar__row {
    display: flex;
    align-items: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
}

.prod-toolbar__search {
    position: relative;
    flex: 1 1 18rem;
    min-width: 14rem;
}

.prod-toolbar__count {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-left: auto;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid var(--prod-border);
    background: var(--prod-surface);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--prod-ink-soft);
    line-height: 1;
    white-space: nowrap;
}

.prod-toolbar__count strong {
    color: var(--prod-ink);
    font-size: 0.95rem;
    font-weight: 800;
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    letter-spacing: -0.01em;
}

.prod-toolbar__count-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(87, 66, 57, 0.7);
}

/* Produtos: bloco de filtros refinado */
.prod-toolbar__filters-wrap {
    position: relative;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--prod-border);
}

.prod-toolbar__filters-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(87, 66, 57, 0.65);
}

.prod-toolbar__scroll-hint {
    position: absolute;
    top: 0.85rem;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(87, 66, 57, 0.6);
}

.prod-toolbar__scroll-hint .material-symbols-outlined {
    font-size: 0.95rem;
    color: var(--prod-accent);
}

@media (min-width: 768px) {
    .prod-toolbar__scroll-hint {
        display: none;
    }
}

/* Produtos: card refinado e minimalista */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--prod-radius-lg);
    border: 1px solid var(--prod-border);
    background: var(--prod-surface);
    box-shadow: var(--prod-shadow-sm);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    cursor: pointer;
    outline: none;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: var(--prod-border-strong);
    box-shadow: var(--prod-shadow-lg);
}

.product-card:focus-visible {
    border-color: var(--prod-accent);
    box-shadow: 0 0 0 3px rgba(255, 135, 67, 0.25), var(--prod-shadow-md);
}

.product-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 50% 100%, rgba(255, 135, 67, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #f7f4f2 0%, #ede8e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.product-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 -1px 0 rgba(27, 28, 28, 0.04);
}

.product-card__media img {
    max-height: 100%;
    width: 100%;
    max-width: 280px;
    object-fit: contain;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__media img {
    transform: scale(1.045);
}

.product-card__category {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(27, 28, 28, 0.05);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--prod-ink-soft);
}

.product-card__category .material-symbols-outlined {
    font-size: 0.85rem;
    color: var(--prod-accent);
}

.product-card__badge {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.32rem 0.65rem;
    border-radius: 9999px;
    background: var(--prod-ink);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-card__badge .material-symbols-outlined {
    font-size: 0.85rem;
    color: #fbbf24;
}

.product-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.15rem 1.25rem 1.25rem;
    gap: 0.5rem;
}

.product-card__sku {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(87, 66, 57, 0.65);
    margin: 0;
}

.product-card__sku::before {
    content: "";
    width: 0.35rem;
    height: 0.35rem;
    background: var(--prod-accent);
    border-radius: 9999px;
}

.product-card__title {
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: var(--prod-ink);
    margin: 0;
}

.product-card__desc {
    flex: 1 1 auto;
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--prod-ink-soft);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.85rem;
    margin-top: 0.35rem;
    border-top: 1px solid var(--prod-border);
}

.product-card__stock {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #047857;
}

.product-card__stock::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 9999px;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.16);
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--prod-accent);
    transition: gap 0.2s ease, color 0.2s ease;
}

.product-card:hover .product-card__cta {
    gap: 0.55rem;
    color: var(--prod-accent-strong);
}

.product-card__cta .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.product-card:hover .product-card__cta .material-symbols-outlined {
    transform: translateX(2px);
}

/* Produtos: empty state minimalista */
.prod-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 3.5rem 1.5rem;
    border-radius: var(--prod-radius-lg);
    border: 1px dashed var(--prod-border-strong);
    background: var(--prod-surface-soft);
    text-align: center;
}

.prod-empty__icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--prod-accent-soft);
    color: var(--prod-accent);
}

.prod-empty__title {
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--prod-ink);
}

.prod-empty__hint {
    font-size: 0.88rem;
    color: var(--prod-ink-soft);
    max-width: 30rem;
    line-height: 1.55;
}

.prod-empty__action {
    margin-top: 0.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.15rem;
    border-radius: 9999px;
    border: 1px solid var(--prod-ink);
    color: #fff;
    background: var(--prod-ink);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
    cursor: pointer;
}

.prod-empty__action:hover {
    background: var(--prod-accent);
    border-color: var(--prod-accent);
}

.prod-empty__action:active {
    transform: scale(0.97);
}

/* Produtos: trust strip refinado */
.prod-trust {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .prod-trust {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.prod-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.1rem 1.2rem;
    border-radius: var(--prod-radius-lg);
    background: var(--prod-surface);
    border: 1px solid var(--prod-border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.prod-trust__item:hover {
    border-color: var(--prod-border-strong);
    box-shadow: var(--prod-shadow-md);
    transform: translateY(-2px);
}

.prod-trust__icon {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: var(--prod-accent-soft);
    color: var(--prod-accent);
    flex-shrink: 0;
}

.prod-trust__title {
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--prod-ink);
    line-height: 1.25;
}

.prod-trust__hint {
    font-size: 0.78rem;
    color: var(--prod-ink-soft);
    margin-top: 0.2rem;
    line-height: 1.5;
}

/* Trust strip — mobile-only auto-scrolling marquee (vantagens) */
@keyframes store-trust-marquee-x {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.store-trust-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.store-trust-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 2.25rem;
    padding-inline: 1.5rem;
    animation: store-trust-marquee-x 20s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.store-trust-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.store-trust-marquee:hover .store-trust-marquee-track,
.store-trust-marquee:focus-within .store-trust-marquee-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .store-trust-marquee-track {
        animation: none;
        transform: none;
    }
}

/* Página produtos: chips de filtro do catálogo + variantes do dropdown */
.prod-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 9999px;
    border: 1px solid var(--prod-border);
    background: var(--prod-surface);
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--prod-ink-soft);
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.1;
    transition:
        border-color 0.18s ease,
        background-color 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
}

.prod-filter-btn:hover {
    border-color: var(--prod-border-strong);
    color: var(--prod-ink);
    background: #fdfcfb;
}

.prod-filter-btn:focus-visible {
    outline: none;
    border-color: var(--prod-accent);
    box-shadow: 0 0 0 3px rgba(255, 135, 67, 0.18);
}

.prod-filter-btn.prod-filter-active {
    border-color: var(--prod-ink);
    background: var(--prod-ink);
    color: #fff;
    box-shadow: 0 6px 16px -10px rgba(27, 28, 28, 0.6);
}

.prod-filter-btn--sm {
    padding: 0.35rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.1;
    border-radius: 9999px;
}

.prod-filter-btn--block {
    width: 100%;
    padding: 0.55rem 0.9rem;
    font-size: 0.76rem;
    justify-content: center;
}

.nav-dropdown-panel {
    box-shadow: 0 20px 50px rgba(27, 28, 28, 0.12);
}

.nav-dropdown-panel .prod-filter-section-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--prod-accent-strong);
}

.prod-filter-btn .prod-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.2rem;
    height: 1.2rem;
    padding: 0 0.4rem;
    border-radius: 9999px;
    background: rgba(27, 28, 28, 0.06);
    color: var(--prod-ink-soft);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.prod-filter-btn.prod-filter-active .prod-filter-count {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

#produto-toolbar {
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

#produto-toolbar.produto-toolbar--stuck {
    box-shadow: 0 8px 28px rgba(27, 28, 28, 0.08);
}

a.site-nav-link.site-nav-link--active {
    background: rgba(0, 0, 0, 0.14);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* Faixa de confiança */
.store-trust-item {
    text-align: center;
    padding: 0 0.5rem;
}

@media (min-width: 1024px) {
    .store-trust-item {
        text-align: left;
        padding: 0 1rem 0 0;
        border-right: 1px solid rgba(27, 28, 28, 0.08);
    }

    .store-trust-item:last-child {
        border-right: none;
    }
}

.store-trust-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: linear-gradient(145deg, #fff6f0 0%, #ffe8d9 100%);
    color: #c2410c;
    box-shadow: 0 8px 24px rgba(158, 66, 0, 0.12);
}

@media (min-width: 1024px) {
    .store-trust-icon {
        margin: 0 0 1rem 0;
    }
}

.store-trust-icon .material-symbols-outlined {
    font-size: 1.5rem;
}

.store-trust-title {
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1b1c1c;
    margin-bottom: 0.35rem;
}

.store-trust-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #574239;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .store-trust-text {
        margin-left: 0;
    }
}

/* Setores que atendemos — substitui faixa de confiança na home */
.setor-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 1.1rem 1.15rem 1.2rem;
    border-radius: 1rem;
    background: #fbf9f7;
    border: 1px solid #ece7e2;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 6px 18px -14px rgba(27, 28, 28, 0.18);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

@media (min-width: 768px) {
    .setor-card {
        padding: 1.4rem 1.4rem 1.5rem;
        gap: 0.75rem;
    }
}

.setor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 135, 67, 0.35);
    background: #fff;
    box-shadow: 0 18px 38px -24px rgba(158, 66, 0, 0.35);
}

.setor-card__icon {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: linear-gradient(145deg, #fff6f0 0%, #ffe1cc 100%);
    color: #c2410c;
    box-shadow: 0 8px 18px -10px rgba(158, 66, 0, 0.4);
}

@media (min-width: 768px) {
    .setor-card__icon {
        width: 3rem;
        height: 3rem;
    }
}

.setor-card__icon .material-symbols-outlined {
    font-size: 1.5rem;
    font-variation-settings: 'FILL' 1;
}

.setor-card__title {
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    color: #1b1c1c;
    letter-spacing: -0.005em;
}

@media (min-width: 768px) {
    .setor-card__title {
        font-size: 1.05rem;
    }
}

.setor-card__text {
    font-size: 0.78rem;
    line-height: 1.55;
    color: #574239;
}

@media (min-width: 768px) {
    .setor-card__text {
        font-size: 0.875rem;
    }
}

/* Fundo sutil na vitrine de produtos */
.store-section-dots {
    background-color: #f4f1ef;
    background-image: radial-gradient(rgba(27, 28, 28, 0.04) 1px, transparent 1px);
    background-size: 18px 18px;
}

.store-product-card {
    border: 1px solid rgba(27, 28, 28, 0.06);
    box-shadow: 0 4px 6px -1px rgba(27, 28, 28, 0.04), 0 12px 28px -8px rgba(27, 28, 28, 0.1);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.store-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 135, 67, 0.35);
    box-shadow: 0 16px 40px -12px rgba(158, 66, 0, 0.2), 0 0 0 1px rgba(255, 135, 67, 0.12);
}

.store-pill {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9e4200;
    background: rgba(255, 135, 67, 0.12);
    border: 1px solid rgba(255, 135, 67, 0.25);
    padding: 0.35rem 0.6rem;
    border-radius: 9999px;
}

.store-pill--muted {
    color: #574239;
    background: rgba(27, 28, 28, 0.05);
    border-color: rgba(27, 28, 28, 0.08);
}

.store-feature-row h2 {
    color: #1b1c1c;
}

.store-pay-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
}

/* Páginas internas (conteúdo espelhado da loja) */
.page-main {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.prose-store {
    color: var(--prod-ink-soft, #574239);
    font-size: 1rem;
    line-height: 1.7;
}

.prose-store h1 {
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    font-size: clamp(1.85rem, 1.2rem + 2.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--prod-ink, #1b1c1c);
    margin-bottom: 0.85rem;
}

.prose-store > p.lead {
    font-size: 1.075rem;
    line-height: 1.65;
    color: var(--prod-ink-soft, #574239);
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--prod-border, #ece7e2);
}

.prose-store h2 {
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    font-weight: 800;
    color: var(--prod-ink, #1b1c1c);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.prose-store h3 {
    font-family: "DM Sans", Inter, system-ui, sans-serif;
    font-weight: 700;
    color: var(--prod-ink, #1b1c1c);
    margin-top: 1.85rem;
    margin-bottom: 0.6rem;
    font-size: 1.125rem;
    line-height: 1.3;
}

.prose-store h4 {
    font-weight: 700;
    color: var(--prod-ink, #1b1c1c);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.prose-store p {
    margin-bottom: 1rem;
}

.prose-store ul,
.prose-store ol {
    padding-left: 1.4rem;
    margin-bottom: 1.1rem;
}

.prose-store ul {
    list-style: none;
    padding-left: 0;
}

.prose-store ul > li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
}

.prose-store ul > li::before {
    content: "";
    position: absolute;
    left: 0.2rem;
    top: 0.65em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 9999px;
    background: var(--prod-accent, #c2410c);
    opacity: 0.7;
}

.prose-store ol {
    list-style: decimal;
}

.prose-store ol > li {
    margin-bottom: 0.5rem;
    padding-left: 0.35rem;
}

.prose-store ol > li::marker {
    color: var(--prod-accent, #c2410c);
    font-weight: 700;
}

.prose-store strong {
    color: var(--prod-ink, #1b1c1c);
    font-weight: 700;
}

.prose-store a {
    color: var(--prod-accent, #c2410c);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255, 135, 67, 0.4);
    text-underline-offset: 3px;
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.prose-store a:hover {
    color: var(--prod-accent-strong, #9e4200);
    text-decoration-color: currentColor;
}

.prose-store blockquote {
    margin: 1.25rem 0;
    padding: 0.85rem 1.1rem;
    border-left: 3px solid var(--prod-accent, #c2410c);
    background: var(--prod-surface-soft, #fbf9f7);
    border-radius: 0 var(--prod-radius-sm, 0.625rem) var(--prod-radius-sm, 0.625rem) 0;
    color: var(--prod-ink-soft, #574239);
    font-style: italic;
}

.nav-dropdown-panel {
    box-shadow: 0 20px 50px rgba(27, 28, 28, 0.12);
}

/* Material Symbols Outlined */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Glass Navigation */
.glass-nav {
    background-color: rgba(251, 249, 248, 0.7);
    backdrop-filter: blur(20px);
}

/* Snap Scroll Container */
.snap-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.snap-section {
    scroll-snap-align: start;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(251, 249, 248, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(158, 66, 0, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(158, 66, 0, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* LOP NAVBAR */
@keyframes rolar-esquerda {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animacao-continua {
    animation: rolar-esquerda 22s linear infinite;
    will-change: transform;
}

.store-topbar:hover .animacao-continua {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .animacao-continua {
        animation: none;
    }

    .store-topbar:hover .animacao-continua {
        animation-play-state: running;
    }
}

/* Nav desktop: hover fluido */
.store-nav a.site-nav-link {
    transition:
        background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.25s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
}

.store-nav a.site-nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Dropdown itens */
.nav-dropdown-panel a {
    transition:
        background-color 0.25s ease,
        color 0.2s ease,
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown-panel a:hover {
    transform: translateX(3px);
}

/* Menu mobile — links */
a.mobile-link {
    transition:
        background-color 0.3s ease,
        color 0.25s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s ease;
    border-radius: 0.5rem;
}

a.mobile-link:hover,
a.mobile-link:focus-visible {
    background: rgba(255, 135, 67, 0.12);
    color: #fff;
    transform: translateX(6px);
    box-shadow: inset 3px 0 0 0 rgba(255, 135, 67, 0.85);
}

#menu-toggle .menu-bar {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease,
        width 0.3s ease,
        background-color 0.25s ease;
}

#menu-toggle:hover .menu-bar {
    background-color: rgba(255, 255, 255, 0.95);
}

#menu-toggle:hover .menu-bar--short {
    width: 1.75rem;
}

@media (min-width: 768px) {
    .store-topbar .max-w-7xl > span {
        transition: color 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .store-topbar .max-w-7xl > span:hover {
        color: #fff;
        transform: translateY(-1px);
    }
}

/* Produtos: filtros em faixa horizontal no mobile */
.prod-filtros-scroll {
    -webkit-overflow-scrolling: touch;
}

.prod-filtros-scroll .prod-filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .prod-filtros-scroll {
        flex-wrap: wrap;
        overflow: visible !important;
    }
}

/* Marquee infinito (parcerias / logos) */
@keyframes store-marquee-x {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.store-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.store-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 4rem;
    animation: store-marquee-x 28s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@media (max-width: 767px) {
    .store-marquee-track {
        animation-duration: 22s;
    }
}

@media (min-width: 768px) {
    .store-marquee-track {
        gap: 6rem;
        animation-duration: 36s;
    }
}

.store-marquee:hover .store-marquee-track {
    animation-play-state: paused;
}

@keyframes store-marquee-logo-shine {
    0%,
    100% {
        opacity: 0.52;
        filter: brightness(1);
    }
    50% {
        opacity: 0.92;
        filter: brightness(1.12);
    }
}

.store-marquee-logo {
    animation: store-marquee-logo-shine 3.5s ease-in-out infinite;
}

.store-marquee-track > .store-marquee-logo:nth-child(5n + 1) {
    animation-delay: 0s;
}
.store-marquee-track > .store-marquee-logo:nth-child(5n + 2) {
    animation-delay: 0.25s;
}
.store-marquee-track > .store-marquee-logo:nth-child(5n + 3) {
    animation-delay: 0.5s;
}
.store-marquee-track > .store-marquee-logo:nth-child(5n + 4) {
    animation-delay: 0.75s;
}
.store-marquee-track > .store-marquee-logo:nth-child(5n) {
    animation-delay: 1s;
}

@media (prefers-reduced-motion: reduce) {
    .store-marquee-logo {
        animation: none;
        opacity: 0.65;
    }

    .store-marquee-track {
        animation: none;
    }
}

/* Catálogo horizontal: fundo da faixa com leve animação em loop */
@keyframes store-catalogo-edge-shimmer {
    0% {
        opacity: 0.4;
        transform: translateX(-8%);
    }
    50% {
        opacity: 0.75;
        transform: translateX(8%);
    }
    100% {
        opacity: 0.4;
        transform: translateX(-8%);
    }
}

.store-catalogo-scroll-wrap {
    position: relative;
}

.store-catalogo-scroll-wrap > * {
    position: relative;
    z-index: 3;
}

.store-catalogo-scroll-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(244, 241, 239, 0.97) 0%,
        rgba(244, 241, 239, 0) 14%,
        rgba(244, 241, 239, 0) 86%,
        rgba(244, 241, 239, 0.97) 100%
    );
}

.store-catalogo-scroll-wrap::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 0;
    height: 3px;
    z-index: 2;
    pointer-events: none;
    border-radius: 9999px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 135, 67, 0.45),
        rgba(255, 135, 67, 0.65),
        rgba(255, 135, 67, 0.45),
        transparent
    );
    animation: store-catalogo-edge-shimmer 5.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .store-catalogo-scroll-wrap::after {
        animation: none;
        opacity: 0.35;
        transform: none;
    }
}

@keyframes store-section-dots-drift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 36px 36px;
    }
}

.store-section-dots--motion {
    animation: store-section-dots-drift 28s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .store-section-dots--motion {
        animation: none;
    }
}

/* Hero: vinheta sobre imagem do slide */
.hero-slide-overlay {
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 42%, rgba(0, 0, 0, 0.12) 100%),
        linear-gradient(115deg, rgba(232, 104, 34, 0.22) 0%, transparent 45%, transparent 100%),
        radial-gradient(ellipse 120% 80% at 50% 100%, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
}

@media (min-width: 768px) {
    .hero-slide-overlay {
        background:
            linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.08) 100%),
            linear-gradient(125deg, rgba(232, 104, 34, 0.18) 0%, transparent 50%, transparent 100%),
            radial-gradient(ellipse 100% 70% at 50% 100%, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    }
}

/* Nav: destaque WhatsApp (leve pulso) */
@keyframes nav-wa-attn {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.28);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
    }
}

.nav-wa-attn {
    animation: nav-wa-attn 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .nav-wa-attn {
        animation: none;
    }
}
