.loja-public-body .checkout-main {
    margin: calc(var(--checkout-header-offset, 0px)) 0 0;
    padding: 0;
}

.loja-public-body .checkout-shell {
    width: 100%;
}

.loja-public-body .checkout-alerts {
    margin: 0;
}

.loja-site-page {
    display: block;
    width: 100%;
}

.loja-site-page__html {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    color: var(--checkout-text);
    font-size: 16px;
    line-height: 1.7;
}

.loja-site-page__html > *:first-child {
    margin-top: 0;
}

.loja-site-page__html img,
.loja-site-page__html iframe,
.loja-site-page__html video {
    height: auto;
    max-width: 100%;
}

.loja-site-page__html table {
    display: block;
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.loja-site-page__html pre {
    max-width: 100%;
    overflow-x: auto;
}

.loja-site-page__empty {
    padding: 26px clamp(18px, 4vw, 72px);
}

.loja-site-page__infobar {
    margin: 0 clamp(18px, 4vw, 72px) 20px;
    padding: 10px 12px;
}

.loja-site-page__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.loja-site-page__menu-item {
    text-decoration: none;
    transition: all 0.15s ease;
}

.loja-site-page__menu-item:hover,
.loja-site-page__menu-item:focus {
    background: var(--checkout-primary-strong);
    color: var(--checkout-on-primary);
    text-decoration: none;
}

.loja-checkout-showcase {
    margin: 20px clamp(18px, 4vw, 72px) 0;
    padding: clamp(18px, 2.8vw, 28px);
    border: 1px solid var(--checkout-border);
    border-radius: 14px;
    background: var(--checkout-surface);
}

.loja-checkout-showcase__head {
    margin-bottom: 18px;
}

.loja-checkout-showcase__kicker {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--checkout-primary);
}

.loja-checkout-showcase__title {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--checkout-primary-strong);
}

.loja-checkout-showcase__subtitle {
    margin: 10px 0 0;
    color: var(--checkout-muted);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    max-width: 72ch;
}

.loja-checkout-showcase__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.loja-checkout-component {
    margin: 20px 0 0;
    padding: clamp(18px, 2.8vw, 28px);
    border: 1px solid var(--checkout-border);
    border-radius: 14px;
    background: var(--checkout-surface);
}

.loja-checkout-component__head {
    margin-bottom: 14px;
}

.loja-checkout-component__kicker {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--checkout-primary);
}

.loja-checkout-component__title {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--checkout-primary-strong);
}

.loja-checkout-component__subtitle {
    margin: 10px 0 0;
    color: var(--checkout-muted);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    max-width: 72ch;
}

.loja-checkout-component__group + .loja-checkout-component__group {
    margin-top: 16px;
}

.loja-checkout-component__group-title {
    margin: 0 0 10px;
    color: var(--checkout-primary-strong);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.loja-checkout-card {
    display: grid;
    gap: 10px;
    border: 1px solid var(--checkout-border);
    border-radius: 12px;
    background: var(--checkout-surface);
    padding: 16px;
}

.loja-checkout-card__title {
    margin: 0;
    color: var(--checkout-primary-strong);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 800;
}

.loja-checkout-card__description {
    margin: 0;
    color: var(--checkout-text);
    font-size: 14px;
    line-height: 1.45;
}

.loja-checkout-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.loja-checkout-card__chip {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid var(--checkout-border);
    background: var(--checkout-bg-soft);
    color: var(--checkout-primary-strong);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.loja-checkout-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 999px;
    border: 1px solid var(--checkout-primary);
    background: var(--checkout-primary);
    color: var(--checkout-on-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 14px;
    transition: none;
}

.loja-checkout-card__cta:hover,
.loja-checkout-card__cta:focus {
    border-color: var(--checkout-primary-strong);
    background: var(--checkout-primary-strong);
    color: var(--checkout-on-primary);
    text-decoration: none;
}

.loja-floating-whatsapp {
    align-items: center;
    background: #25d366;
    border-radius: 999px;
    bottom: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    display: inline-flex;
    gap: 8px;
    height: 52px;
    justify-content: center;
    min-width: 152px;
    padding: 0 22px;
    position: fixed;
    right: 18px;
    text-decoration: none;
    z-index: 1205;
}

.loja-floating-whatsapp:hover,
.loja-floating-whatsapp:focus {
    background: #1fa855;
    color: #ffffff;
    text-decoration: none;
}

.loja-floating-whatsapp .fa {
    font-size: 20px;
    line-height: 1;
}

.loja-floating-whatsapp__label {
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 767px) {
    .loja-checkout-showcase {
        margin-left: 12px;
        margin-right: 12px;
        border-radius: 12px;
        padding: 14px;
    }

    .loja-checkout-component {
        border-radius: 12px;
        padding: 14px;
    }

    .loja-floating-whatsapp {
        bottom: 14px;
        height: 48px;
        min-width: 138px;
        padding: 0 18px;
        right: 14px;
    }

    .loja-floating-whatsapp__label {
        font-size: 16px;
    }
}
