:root {
    --lojas-ink: #251f1f;
    --lojas-muted: #756b6b;
    --lojas-brand: #a9363d;
    --lojas-brand-dark: #7f262c;
    --lojas-accent: #f3b936;
    --lojas-surface: #ffffff;
    --lojas-soft: #f7f3f2;
    --lojas-border: #e8dedc;
    --lojas-shadow: 0 16px 42px rgba(71, 43, 43, .1);
}

.lojas-v2 {
    min-height: 100vh;
    margin: 0;
    padding-bottom: 74px;
    color: var(--lojas-ink);
    background: #f5f1f0;
}

.lojas-v2 button,
.lojas-v2 input,
.lojas-v2 select {
    font: inherit;
}

.lojas-v2 button:focus-visible,
.lojas-v2 a:focus-visible,
.lojas-v2 input:focus-visible,
.lojas-v2 select:focus-visible {
    outline: 3px solid var(--lojas-accent);
    outline-offset: 3px;
}

.lojas-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    color: var(--lojas-brand-dark);
    font-weight: 800;
    transform: translateY(-180%);
    transition: transform .2s ease;
}

.lojas-skip-link:focus {
    transform: translateY(0);
}

.lojas-shell {
    min-height: calc(100vh - 64px);
}

.lojas-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(91, 53, 53, .1);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 28px rgba(64, 39, 39, .08);
    backdrop-filter: blur(16px);
}

.lojas-header__inner,
.lojas-search,
.lojas-main,
.lojas-footer {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.lojas-header__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lojas-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 4px;
    border: 0;
    background: transparent;
    color: var(--lojas-ink);
    text-align: left;
}

.lojas-brand img {
    width: 58px;
    height: 58px;
    border: 3px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(78, 42, 42, .18);
}

.lojas-brand span {
    display: grid;
}

.lojas-brand strong {
    max-width: 280px;
    overflow: hidden;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lojas-brand small {
    color: var(--lojas-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lojas-actions {
    display: flex;
    gap: 8px;
}

.lojas-actions button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: #5f5353;
    font-weight: 800;
}

.lojas-actions button:hover,
.lojas-actions button.is-active {
    border-color: #eed9d9;
    background: #fff1f1;
    color: var(--lojas-brand);
}

.lojas-actions button:disabled {
    opacity: .45;
}

.lojas-search {
    display: grid;
    grid-template-columns: minmax(190px, .75fr) minmax(220px, .9fr) minmax(280px, 1.35fr);
    gap: 14px;
    padding: 16px 0 20px;
}

.lojas-field {
    min-width: 0;
}

.lojas-field label {
    display: block;
    margin: 0 0 7px;
    color: #584c4c;
    font-size: 12px;
    font-weight: 800;
}

.lojas-field select,
.lojas-field input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--lojas-border);
    border-radius: 13px;
    background: #fff;
    color: var(--lojas-ink);
}

.lojas-search-control {
    position: relative;
}

.lojas-search-control input {
    padding-right: 54px;
}

.lojas-search-control button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: var(--lojas-brand);
    color: #fff;
}

.lojas-main {
    padding: 34px 0 48px;
}

.lojas-page-heading {
    margin-bottom: 26px;
}

.lojas-page-heading p,
.lojas-results__eyebrow {
    margin: 0 0 5px;
    color: var(--lojas-brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lojas-page-heading h1,
.lojas-results__header h2 {
    margin: 0;
    color: var(--lojas-ink);
    font-weight: 900;
    letter-spacing: -.025em;
}

.lojas-page-heading h1 {
    font-size: clamp(30px, 4vw, 46px);
}

.lojas-content > .row,
.lojas-content > section {
    margin-right: 0;
    margin-left: 0;
}

.lojas-flow-state {
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding: 20px;
    border: 1px solid var(--lojas-border);
    border-radius: 18px;
    background: #fff;
}

.lojas-flow-state > i {
    color: var(--lojas-brand);
    font-size: 28px;
}

.lojas-flow-state span {
    display: grid;
    flex: 1;
    gap: 3px;
}

.lojas-flow-state small {
    color: var(--lojas-muted);
}

.lojas-primary-action {
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: var(--lojas-brand);
    color: #fff;
    font-weight: 900;
}

.lojas-results__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.lojas-categories {
    margin-bottom: 34px;
}

.lojas-categories__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.lojas-categories__heading h2,
.lojas-mobile-search h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
}

.lojas-categories__heading > span {
    color: var(--lojas-muted);
    font-size: 12px;
}

.lojas-categories__track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 10px;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
}

.lojas-category {
    min-width: 104px;
    min-height: 118px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--lojas-border);
    border-radius: 17px;
    background: #fff;
    color: #5e5151;
    font-size: 12px;
    font-weight: 800;
    scroll-snap-align: start;
}

.lojas-category:hover,
.lojas-category.is-active {
    border-color: #d7abad;
    background: #fff1f1;
    color: var(--lojas-brand);
}

.lojas-category__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--lojas-soft);
}

.lojas-category__icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.lojas-mobile-search,
.lojas-location-card,
.lojas-profile {
    border: 1px solid var(--lojas-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--lojas-shadow);
}

.lojas-mobile-search {
    padding: 20px;
}

.lojas-mobile-search__categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.lojas-category--mobile {
    width: 100%;
    min-width: 0;
}

.lojas-location-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, .75fr);
    align-items: center;
    gap: 26px;
    max-width: 840px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 48px);
}

.lojas-location-card__content {
    display: grid;
    gap: 10px;
}

.lojas-location-card__content > p,
.lojas-profile header p {
    margin: 0;
    color: var(--lojas-brand);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lojas-location-card h2,
.lojas-profile h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 900;
}

.lojas-location-card__content > span {
    color: var(--lojas-muted);
    line-height: 1.55;
}

.lojas-location-card label {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 900;
}

.lojas-location-card select {
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid var(--lojas-border);
    border-radius: 13px;
    background: #fff;
}

.lojas-location-card > img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
}

.lojas-profile {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(22px, 5vw, 36px);
}

.lojas-profile header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.lojas-profile header > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: #f5e5e5;
    color: var(--lojas-brand);
    font-size: 22px;
}

.lojas-profile dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.lojas-profile dl > div {
    padding: 16px;
    border-radius: 14px;
    background: var(--lojas-soft);
}

.lojas-profile dt {
    color: var(--lojas-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.lojas-profile dd {
    margin: 5px 0 0;
    overflow-wrap: anywhere;
    font-weight: 800;
}

.lojas-profile__logout {
    margin-top: 20px;
}

.lojas-orders {
    max-width: 860px;
    margin: 0 auto;
}

.lojas-orders > header {
    margin-bottom: 18px;
}

.lojas-orders > header p {
    margin: 0 0 4px;
    color: var(--lojas-brand);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lojas-orders > header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
}

.lojas-orders__list {
    display: grid;
    gap: 14px;
}

.lojas-order-card {
    padding: 22px;
    border: 1px solid var(--lojas-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(70, 43, 43, .06);
}

.lojas-order-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee5e3;
}

.lojas-order-card__top > div {
    display: grid;
    gap: 3px;
}

.lojas-order-card__top strong {
    font-size: 18px;
}

.lojas-order-card__top > div span {
    color: var(--lojas-muted);
    font-size: 12px;
}

.lojas-order-status {
    padding: 6px 10px;
    border-radius: 999px;
    background: #eee8e7;
    color: #625656;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.lojas-order-status.is-waiting { background: #fff2c9; color: #735300; }
.lojas-order-status.is-approved { background: #ece1ff; color: #6438a3; }
.lojas-order-status.is-delivery { background: #e3edff; color: #2459a3; }
.lojas-order-status.is-finished { background: #daf3df; color: #236c34; }
.lojas-order-status.is-cancelled { background: #ffe0e0; color: #962e34; }

.lojas-order-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin: 18px 0 0;
}

.lojas-order-card dl > div {
    min-width: 0;
}

.lojas-order-card dt {
    color: var(--lojas-muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.lojas-order-card dd {
    margin: 4px 0 0;
    overflow-wrap: anywhere;
}

.lojas-order-card__total {
    color: var(--lojas-brand-dark);
    font-size: 18px;
    font-weight: 900;
}

.lojas-results__header h2 {
    font-size: 26px;
}

.lojas-active-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff;
    color: var(--lojas-muted);
    box-shadow: 0 5px 18px rgba(70, 42, 42, .08);
}

.lojas-active-filter button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: #f5e7e7;
    color: var(--lojas-brand);
}

.lojas-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.lojas-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--lojas-border);
    border-radius: 20px;
    background: var(--lojas-surface);
    box-shadow: 0 8px 28px rgba(71, 43, 43, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.lojas-card:hover {
    border-color: #dcbfc1;
    box-shadow: var(--lojas-shadow);
    transform: translateY(-3px);
}

.lojas-card.is-closed {
    opacity: .72;
}

.lojas-card__action {
    width: 100%;
    min-height: 172px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
}

.lojas-card__media {
    position: relative;
    width: 92px;
    height: 92px;
}

.lojas-card__media img {
    width: 100%;
    height: 100%;
    border: 1px solid #eee4e2;
    border-radius: 18px;
    object-fit: cover;
}

.lojas-card__closed {
    position: absolute;
    right: 4px;
    bottom: 4px;
    padding: 4px 7px;
    border-radius: 999px;
    background: #3f3535;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.lojas-card__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lojas-card__title {
    overflow: hidden;
    font-size: 17px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lojas-card__category,
.lojas-card__detail,
.lojas-card__meta {
    color: var(--lojas-muted);
    font-size: 12px;
}

.lojas-card__rating {
    color: #a66a00;
    font-size: 12px;
    font-weight: 900;
}

.lojas-card__detail {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lojas-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 3px;
}

.lojas-card__meta span + span::before {
    content: "•";
    margin-right: 8px;
}

.lojas-card__arrow {
    color: #baa9a9;
}

.lojas-empty-state {
    padding: 56px 24px;
    border: 1px dashed #d9c7c5;
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
    text-align: center;
}

.lojas-empty-state__icon {
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 18px;
    background: #f3e2e2;
    color: var(--lojas-brand);
    font-size: 22px;
}

.lojas-mobile-nav {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 1100;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 7px;
    border: 1px solid rgba(96, 56, 56, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 12px 36px rgba(51, 29, 29, .2);
}

.lojas-mobile-nav button {
    min-height: 52px;
    display: grid;
    place-items: center;
    gap: 2px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #736767;
    font-size: 11px;
    font-weight: 800;
}

.lojas-mobile-nav button.is-active {
    background: #fff0f0;
    color: var(--lojas-brand);
}

.lojas-footer {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--lojas-border);
}

.lojas-footer button {
    border: 0;
    background: transparent;
    color: var(--lojas-muted);
    font-weight: 700;
}

.lojas-modal .modal-dialog {
    width: min(760px, calc(100% - 28px));
    margin: 6vh auto;
}

.lojas-modal__content {
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(46, 26, 26, .28);
}

.lojas-modal__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border: 0;
    background: linear-gradient(135deg, var(--lojas-brand-dark), var(--lojas-brand));
    color: #fff;
}

.lojas-modal__header p,
.lojas-modal__header h2 {
    margin: 0;
}

.lojas-modal__header p {
    color: rgba(255, 255, 255, .75);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lojas-modal__header h2 {
    font-size: 24px;
    font-weight: 900;
}

.lojas-modal__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 15px;
    background: rgba(255, 255, 255, .16);
    font-size: 20px;
}

.lojas-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    min-width: 40px;
    min-height: 40px;
    color: #fff;
    opacity: .9;
}

.lojas-modal__body {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, .75fr);
    gap: 26px;
    padding: 28px;
}

.lojas-modal__form {
    display: grid;
    gap: 18px;
}

.lojas-input-icon {
    position: relative;
}

.lojas-input-icon > i {
    position: absolute;
    top: 50%;
    left: 15px;
    color: var(--lojas-brand);
    transform: translateY(-50%);
}

.lojas-input-icon input {
    padding-left: 42px;
}

.lojas-modal__error {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #ecc0c2;
    border-radius: 12px;
    background: #fff1f1;
    color: #8b272e;
}

.lojas-modal__submit,
.lojas-secondary-action {
    width: 100%;
}

.lojas-primary-action:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.lojas-secondary-action {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid #dfcdcb;
    border-radius: 12px;
    background: #fff;
    color: var(--lojas-brand-dark);
    font-weight: 900;
}

.lojas-modal__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border-radius: 18px;
    background: var(--lojas-soft);
    color: #5b4d4d;
    text-align: center;
}

.lojas-modal__visual img {
    width: min(100%, 180px);
    max-height: 210px;
    object-fit: contain;
}

.lojas-signup-modal__body {
    max-height: 68vh;
    overflow-y: auto;
    padding: 26px;
}

.lojas-signup-modal__body .row {
    margin-right: -8px;
    margin-left: -8px;
}

.lojas-signup-modal__body .form-group {
    padding-right: 8px;
    padding-left: 8px;
}

.lojas-signup-modal__body label {
    margin-bottom: 7px;
    color: #574b4b;
    font-size: 12px;
    font-weight: 900;
}

.lojas-signup-modal__body .form-control {
    min-height: 48px;
    border: 1px solid var(--lojas-border);
    border-radius: 12px;
    box-shadow: none;
}

.lojas-signup-modal__visual img {
    max-height: 290px;
    margin: 0 auto;
    object-fit: contain;
}

.lojas-required {
    display: inline-block;
    margin-left: 5px;
    color: var(--lojas-brand);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.lojas-signup-modal__footer {
    padding: 18px 26px;
    border: 0;
    background: var(--lojas-soft);
}

.lojas-signup-modal__action {
    width: 100%;
}

.lojas-team-grid {
    max-height: 68vh;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    overflow-y: auto;
    padding: 24px;
}

.lojas-team-card {
    min-height: 154px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--lojas-border);
    border-radius: 17px;
    background: #fff;
    color: var(--lojas-ink);
    text-align: center;
}

.lojas-team-card:hover {
    border-color: #d7abad;
    background: #fff5f5;
}

.lojas-team-card img {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    object-fit: contain;
}

.lojas-launch-modal__body {
    padding: 0;
    background: #171313;
}

.lojas-launch-modal__body img {
    width: 100%;
    max-height: 62vh;
    display: block;
    object-fit: contain;
}

.lojas-launch-modal__footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 24px;
    border: 0;
    background: var(--lojas-soft);
}

.lojas-launch-modal__footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media (max-width: 980px) {
    .lojas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lojas-search {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lojas-field--search {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .lojas-v2 {
        padding-bottom: 88px;
    }

    .lojas-header__inner,
    .lojas-search,
    .lojas-main {
        width: min(100% - 28px, 680px);
    }

    .lojas-header__inner {
        min-height: 72px;
    }

    .lojas-brand img {
        width: 48px;
        height: 48px;
    }

    .lojas-brand strong {
        max-width: 170px;
        font-size: 15px;
    }

    .lojas-actions {
        display: none;
    }

    .lojas-search {
        grid-template-columns: 1fr;
        padding-top: 8px;
    }

    .lojas-field--search {
        grid-column: auto;
    }

    .lojas-main {
        padding-top: 24px;
    }

    .lojas-results__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .lojas-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lojas-card__action {
        min-height: 140px;
        grid-template-columns: 76px minmax(0, 1fr) 14px;
        gap: 12px;
        padding: 14px;
    }

    .lojas-card__media {
        width: 76px;
        height: 76px;
    }

    .lojas-modal .modal-dialog {
        margin: 14px auto 90px;
    }

    .lojas-modal__body {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .lojas-modal__visual {
        display: none;
    }

    .lojas-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 18px;
    }

    .lojas-team-card {
        min-height: 132px;
    }

    .lojas-launch-modal__footer {
        grid-template-columns: 1fr;
    }

    .lojas-categories__heading > span {
        display: none;
    }

    .lojas-category {
        min-width: 88px;
        min-height: 104px;
    }

    .lojas-location-card {
        grid-template-columns: 1fr;
    }

    .lojas-location-card > img {
        display: none;
    }

    .lojas-profile dl {
        grid-template-columns: 1fr;
    }

    .lojas-order-card {
        padding: 18px;
    }

    .lojas-order-card__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .lojas-order-card dl {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lojas-v2 *,
    .lojas-v2 *::before,
    .lojas-v2 *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* O loader legado usa uma largura fixa em alguns fluxos e não pode criar rolagem horizontal. */
body.lojas-v2 > #loadD {
    box-sizing: border-box;
    left: 0 !important;
    max-width: 100% !important;
    right: auto !important;
    width: 100% !important;
}
