/* GERAL */
/* INICIO CSS GERAL */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f2f2f4;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: transparent;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

body.cliente-footer-fixed .cliente-main {
    padding-bottom: 110px;
}

body.cliente-footer-float .cliente-main {
    padding-bottom: 130px;
}

.cliente-main {
    min-height: calc(100vh - 160px);
    padding: 14px 0 32px;
}
/* FIM CSS GERAL */

/* HEADER */
/* INICIO CSS HEADER */
.cliente-header {
    background: #f9f9f9;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.cliente-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cliente-brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.cliente-brand-logo {
    display: block;
    height: 46px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.cliente-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
}

.cliente-header-quick-info {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: flex-end;
    min-width: 0;
}

.cliente-header-location-chip {
    min-height: 48px;
    padding: 8px 12px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.14);
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 320px;
    cursor: pointer;
    border: 0;
    text-align: left;
    width: 100%;
    min-width: 0;
}

.cliente-header-location-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #df1f26;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex: 0 0 auto;
}

.cliente-header-location-text-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1 1 auto;
}

.cliente-header-location-label {
    font-size: 10px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.82;
}

.cliente-header-location-text {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    color: #df1f26;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cliente-header-location-caret {
    flex: 0 0 auto;
    font-size: 12px;
    opacity: 0.9;
}

.cliente-location-actions {
    margin-top: 16px;
    margin-bottom: 12px;
}

.cliente-location-current-btn {
    width: 100%;
    min-height: 50px;
    border-radius: 16px;
    background: #df1f26;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    cursor: pointer;
    font-weight: 800;
    text-align: center;
}

.cliente-location-current-btn-icon {
    flex: 0 0 auto;
    font-size: 15px;
}

.cliente-location-current-btn-text {
    line-height: 1.2;
}

@media (max-width: 768px) {
    .cliente-header-location-chip {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .cliente-location-current-btn {
        min-height: 46px;
        border-radius: 14px;
        font-size: 14px;
        padding: 0 12px;
    }
}

.cliente-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cliente-cart-link-header {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    min-height: 48px;
    justify-content: center;
}

.cliente-cart-link-header i {
    font-size: 16px;
}

.cliente-cart-link-header.is-active {
    background: rgba(255, 255, 255, 0.22);
}

.cliente-cart-count {
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #ffcf00;
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    padding: 0 6px;
}
/* FIM CSS HEADER */

/* MODAL CONFIRMACAO GLOBAL */
/* INICIO CSS MODAL CONFIRMACAO GLOBAL */
body.cliente-modal-open {
    overflow: hidden;
    touch-action: none;
}

.cliente-confirm-modal {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 20px 16px 16px;
    border-radius: 22px;
    text-align: center;
}

.cliente-confirm-modal-icon {
    width: 60px;
    height: 60px;
    margin: 4px auto 14px;
    border-radius: 999px;
    background: #fff1f2;
    color: #df1f26;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: inset 0 0 0 1px rgba(223, 31, 38, 0.08);
}

.cliente-confirm-modal .cliente-modal-title {
    margin: 0 42px 10px;
}

.cliente-confirm-modal .cliente-modal-text {
    margin: 0 0 18px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.cliente-confirm-modal-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cliente-confirm-modal-actions .btn {
    min-width: 132px;
    justify-content: center;
}

@media (max-width: 640px) {
    .cliente-confirm-modal {
        max-width: 100%;
        padding: 18px 12px 12px;
        border-radius: 20px;
    }

    .cliente-confirm-modal-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .cliente-confirm-modal .cliente-modal-title {
        margin: 0 36px 8px;
        font-size: 22px;
        line-height: 1.15;
    }

    .cliente-confirm-modal .cliente-modal-text {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .cliente-confirm-modal-actions .btn {
        width: 100%;
    }
}
/* FIM CSS MODAL CONFIRMACAO GLOBAL */

/* LOCATION MODAL */
/* INICIO CSS LOCATION MODAL */
.cliente-location-modal-backdrop {
    z-index: 10010;
}

.cliente-location-modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 20px 16px 16px;
    border-radius: 22px;
}

.cliente-location-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.cliente-location-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.cliente-location-option {
    width: 100%;
    border: 1px solid #ececec;
    background: #fff;
    border-radius: 16px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    transition: 0.2s ease;
}

.cliente-location-option.is-active {
    border-color: #df1f26;
    box-shadow: 0 0 0 3px rgba(223, 31, 38, 0.08);
    background: #fff8f8;
}

.cliente-location-option-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
}

.cliente-location-option-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #fff2f2;
    color: #df1f26;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex: 0 0 auto;
}

.cliente-location-option-texts {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cliente-location-option-name {
    font-size: 14px;
    line-height: 1.25;
    color: #222;
    font-weight: 800;
}

.cliente-location-option-meta {
    font-size: 12px;
    line-height: 1.3;
    color: #777;
    font-weight: 700;
}

.cliente-location-option-check {
    color: #df1f26;
    font-size: 15px;
    flex: 0 0 auto;
}

.cliente-location-empty {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 16px 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    text-align: center;
}
/* FIM CSS LOCATION MODAL */

/* FOOTER */
/* INICIO CSS FOOTER */
.cliente-footer {
    position: relative;
}

.cliente-footer-copy {
    padding: 18px 16px 100px;
    color: #666;
    font-size: 14px;
}

.cliente-footer-copy p {
    margin: 0;
}

.cliente-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: #ffffff;
    border-top: 1px solid #e9e9e9;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
}

.cliente-bottom-nav-fixed {
    border-radius: 0;
}

.cliente-bottom-nav-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 22px;
    border: 1px solid #ececec;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.cliente-bottom-nav-item {
    position: relative;
    flex: 1;
    min-width: 0;
    color: #777;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 4px;
    font-size: 11px;
    font-weight: 700;
    transition: 0.2s ease;
}

.cliente-bottom-nav-item i {
    font-size: 18px;
}

.cliente-bottom-nav-item.is-active {
    color: #df1f26;
}

.cliente-bottom-nav-badge {
    position: absolute;
    top: 3px;
    right: 18px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #ffcf00;
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-size: 10px;
    line-height: 1;
}
/* FIM CSS FOOTER */

/* DESKTOP */
/* INICIO CSS DESKTOP */
.cliente-desktop-landing {
    display: none;
    padding: 34px 0 20px;
}

.cliente-desktop-landing-grid {
    display: block;
}

.cliente-desktop-landing-content {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.cliente-desktop-landing-logo-wrap {
    margin-bottom: 18px;
    text-align: center;
}

.cliente-desktop-landing-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cliente-desktop-landing-title {
    margin: 0 0 14px;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 800;
    color: #222;
}

.cliente-desktop-landing-text {
    color: #666;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.cliente-desktop-landing-actions {
    margin-bottom: 0;
}

.cliente-desktop-landing-button {
    min-height: 56px;
    border-radius: 18px;
    gap: 10px;
    padding: 0 22px;
    font-size: 15px;
}

.cliente-desktop-landing-button.is-disabled {
    pointer-events: none;
    opacity: 0.6;
}
/* FIM CSS DESKTOP */

/* MOBILE HOME */
/* INICIO CSS MOBILE HOME */
.cliente-mobile-home {
    display: block;
}

.cliente-mobile-home-container {
    max-width: 760px;
}

.cliente-home-custom-message {
    margin-bottom: 12px;
    border-radius: 18px;
    overflow: hidden;
}

.cliente-home-custom-message-top {
    margin-top: 0;
}

.cliente-home-custom-message-inner {
    position: relative;
    background: #f8f9fa;
}

.cliente-home-custom-message img,
.cliente-home-custom-message iframe,
.cliente-home-custom-message video {
    max-width: 100%;
    height: auto;
    display: block;
}

.cliente-home-topbar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.cliente-home-location {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 18px;
    padding: 10px 12px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.04);
}

.cliente-home-location-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fff2f2;
    color: #df1f26;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex: 0 0 auto;
}

.cliente-home-location-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cliente-home-location-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8b8b8b;
}

.cliente-home-location-text {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    color: #222;
}

.cliente-home-search-form {
    display: block;
}

.cliente-home-search-box {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 0 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.cliente-home-search-box i {
    color: #999;
    font-size: 16px;
}

.cliente-home-search-input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #222;
}

.cliente-home-main-slider {
    margin-bottom: 12px;
}

.cliente-home-slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
}

.cliente-home-slider-track::-webkit-scrollbar,
.cliente-home-inline-promo-track::-webkit-scrollbar,
.cliente-home-categories-track::-webkit-scrollbar,
.store-category-tabs::-webkit-scrollbar,
.cliente-modal-product-body::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

.cliente-home-slider-track::-webkit-scrollbar-thumb,
.cliente-home-inline-promo-track::-webkit-scrollbar-thumb,
.cliente-home-categories-track::-webkit-scrollbar-thumb,
.store-category-tabs::-webkit-scrollbar-thumb,
.cliente-modal-product-body::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 999px;
}

.cliente-home-slide {
    display: block;
    scroll-snap-align: start;
}

.cliente-home-slide-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.cliente-home-section-head {
    margin-bottom: 8px;
}

.cliente-home-section-title {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: #222;
}

.cliente-home-categories {
    margin-bottom: 12px;
}

.cliente-home-categories-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(88px, 96px);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.cliente-home-category-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 112px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.03);
}

.cliente-home-category-card.is-active {
    border-color: #df1f26;
    box-shadow: 0 0 0 2px rgba(223, 31, 38, 0.08);
}

.cliente-home-category-card-image-wrap {
    width: 100%;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f3f3;
}

.cliente-home-category-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 8px;
    background: #fff;
}

.cliente-home-category-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    text-transform: lowercase;
}

.cliente-home-filters {
    margin-bottom: 12px;
}

.cliente-home-filters-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.cliente-home-filter-btn {
    min-height: 46px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ececec;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.03);
}

.cliente-home-filter-btn.is-active {
    background: #df1f26;
    border-color: #df1f26;
    color: #fff;
}

.cliente-home-count-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 700;
}

.cliente-home-count-row strong {
    color: #222;
}

.cliente-home-stores {
    margin-bottom: 24px;
}

.cliente-home-store-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cliente-home-store-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.cliente-home-store-card.is-closed {
    background: #f3f3f4;
}

.cliente-home-store-card.is-closed .cliente-home-store-image {
    filter: grayscale(1);
}

.cliente-home-store-card.is-closed .cliente-home-store-image-wrap {
    background: #e4e4e4;
}

.cliente-home-store-card.is-closed .cliente-home-store-title,
.cliente-home-store-card.is-closed .cliente-home-store-category-line,
.cliente-home-store-card.is-closed .cliente-home-store-info-item,
.cliente-home-store-card.is-closed .cliente-home-store-info-item span {
    color: #8c8c8c;
}

.cliente-home-store-card.is-closed .cliente-home-store-info-item i {
    color: #9c9c9c;
}

.cliente-home-store-link {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 12px;
    align-items: center;
}

.cliente-home-store-link-button {
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.cliente-home-store-image-column {
    position: relative;
    width: 86px;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cliente-home-store-badge {
    position: absolute;
    top: -2px;
    left: 0;
    z-index: 3;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 9px;
    font-weight: 800;
}

.cliente-home-store-badge-featured {
    background: #ffcf00;
    color: #222;
}

.cliente-home-store-image-wrap {
    width: 74px;
    height: 74px;
    border-radius: 16px;
    overflow: hidden;
    background: #efefef;
    margin-top: 12px;
}

.cliente-home-store-image,
.cliente-home-store-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cliente-home-store-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 30px;
}

.cliente-home-store-body {
    min-width: 0;
    min-height: 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.cliente-home-store-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.cliente-home-store-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.cliente-home-store-title {
    margin: 0;
    min-width: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cliente-home-store-category-line {
    color: #666;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cliente-home-store-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden;
}

.cliente-home-store-info-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    min-width: 0;
}

.cliente-home-store-info-item i {
    color: #df1f26;
    font-size: 12px;
    flex: 0 0 auto;
}

.cliente-home-inline-promo-block {
    margin-top: -2px;
}

.cliente-home-inline-promo-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.cliente-home-inline-promo-card {
    display: block;
}

.cliente-home-inline-promo-image {
    width: 100%;
    height: 94px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
/* FIM CSS MOBILE HOME */

/* SECTION */
/* INICIO CSS SECTION */
.cliente-section,
.store-section,
.cart-page,
.checkout-page {
    margin-bottom: 26px;
}

.section-header {
    margin-bottom: 16px;
}

.section-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #222;
}
/* FIM CSS SECTION */

/* STORE PAGE */
/* INICIO CSS STORE PAGE */

/* FIM CSS STORE PAGE */

/* SEARCH PAGE */
/* INICIO CSS SEARCH PAGE */
.cliente-search-page {
    margin-bottom: 24px;
}

.cliente-search-container {
    max-width: 760px;
}

.cliente-search-results-wrap {
    transition: opacity 0.2s ease;
}

.cliente-search-results-wrap.is-loading {
    opacity: 0.62;
}

.cliente-home-search-form.is-loading .cliente-home-search-box {
    box-shadow: 0 0 0 3px rgba(223, 31, 38, 0.08);
}

.cliente-search-filters {
    margin-bottom: 14px;
}

.cliente-search-anchor-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.cliente-search-anchor-btn {
    flex: 0 0 auto;
    min-height: 36px;
    min-width: 110px;
    border-radius: 999px;
    background: #f6f6f7;
    border: 1px solid #e8e8ea;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: none;
}

.cliente-search-anchor-btn i {
    font-size: 12px;
    color: #888;
}

.cliente-search-section {
    margin-bottom: 22px;
}

.cliente-search-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.cliente-search-section-title {
    font-size: 22px;
}

.cliente-search-section-count {
    color: #666;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.cliente-search-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.cliente-search-product-card-link {
    display: block;
}

.cliente-search-product-card {
    height: 100%;
    padding: 10px;
}

.cliente-search-product-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cliente-search-product-image-wrap {
    width: 100%;
    height: 132px;
    border-radius: 16px;
    overflow: hidden;
}

.cliente-search-product-body {
    gap: 6px;
}

.cliente-search-product-store-name {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    color: #666;
}

.cliente-search-empty-products {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .cliente-search-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .cliente-search-product-image-wrap {
        height: 118px;
    }

    .cliente-search-section-title {
        font-size: 19px;
    }

    .cliente-search-section-count {
        font-size: 12px;
    }

    .cliente-search-product-card .product-card-store-title {
        font-size: 14px;
    }

    .cliente-search-product-card .product-card-store-description {
        font-size: 11px;
        min-height: 30px;
    }

    .cliente-search-product-card .product-card-store-price {
        font-size: 17px;
    }
}

.store-page-shell {
    max-width: 760px;
}

.store-page-header {
    margin-bottom: 18px;
}

.store-page-store-card {
    margin-bottom: 12px;
}

.store-page-store-link {
    cursor: default;
}

.store-page-store-title {
    font-size: 20px;
}

.store-page-store-description {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
}

.store-page-closed-alert {
    background: #fff4f4;
    border: 1px solid #ffd8d8;
    color: #a94442;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}
/* FIM CSS SEARCH PAGE */

/* STORE CATEGORY TABS */
/* INICIO CSS STORE CATEGORY TABS */
.store-category-tabs-wrap {
    position: sticky;
    top: 0;
    z-index: 10;
    margin-bottom: 24px;
    background: #f2f2f4;
    padding: 8px 0 6px;
}

.store-category-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
}

.store-category-tab {
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #444;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s ease;
}

.store-category-tab.is-active {
    background: #df1f26;
    border-color: #df1f26;
    color: #fff;
}
/* FIM CSS STORE CATEGORY TABS */

/* PRODUCTS */
/* INICIO CSS PRODUCTS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.product-grid-store {
    grid-template-columns: 1fr;
    gap: 14px;
}

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.product-card-store {
    padding: 10px;
}

.product-card-store-main {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    min-width: 0;
}

.product-card-store-image-wrap {
    width: 84px;
    height: 84px;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f3f3;
    flex: 0 0 auto;
}

.product-card-store-image,
.product-card-store-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-store-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.product-card-title {
    margin: 0;
    color: #222;
    font-weight: 800;
}

.product-card-store-title {
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
}

.product-card-description-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.product-card-store-description-wrap {
    gap: 2px;
    min-width: 0;
}

.product-card-description {
    color: #666;
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 64px;
}

.product-card-store-description {
    font-size: 12px;
    line-height: 1.38;
    color: #666;
    -webkit-line-clamp: 2;
    min-height: 34px;
    margin: 0;
}

.product-card-description-wrap.is-expanded .product-card-description {
    display: block;
    -webkit-line-clamp: initial;
    overflow: visible;
    min-height: 0;
}

.product-card-description-toggle {
    border: 0;
    background: #fff3cd;
    color: #7a5a00;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.product-card-store-description-toggle {
    align-self: flex-end;
    padding: 0;
    background: transparent;
    color: #7f7f7f;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    display: none;
    margin-top: 1px;
}

.product-card-description-toggle:hover {
    opacity: 0.92;
}

.product-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #df1f26;
}

.product-card-store-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 6px;
    width: 100%;
}

.product-card-store-price {
    margin: 0;
    font-size: 23px;
    line-height: 1;
    font-weight: 800;
    color: #df1f26;
    flex: 0 1 auto;
}

.product-card-store-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
} 

.product-card-qty-control {
    width: auto;
    min-width: 126px;
    max-width: 138px;
    min-height: 40px;
    background: #fff5f5;
    border: 1px solid rgba(223, 31, 38, 0.12);
    border-radius: 999px;
    display: grid;
    grid-template-columns: 34px minmax(22px, auto) 34px;
    align-items: center;
    gap: 8px;
    padding: 4px;
    margin: 0;
}

.product-card-qty-control.is-empty {
    background: #f8f8f8;
    border-color: #ececec;
}

.product-card-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.18s ease;
    border: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1;
}

.product-card-qty-btn.is-minus {
    background: #f2f2f2;
    color: #666;
}

.product-card-qty-btn.is-plus {
    background: #df1f26;
    color: #fff;
}

.product-card-qty-btn.is-added {
    transform: scale(0.94);
}

.product-card-qty-btn:hover {
    opacity: 0.94;
}

.product-card-qty-btn:disabled,
.product-card-qty-btn[disabled] {
    opacity: 0.5;
    cursor: default;
}

.product-card-qty-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    color: #222;
}

.btn-add-cart {
    width: 100%;
    margin-top: auto;
}

.btn-add-cart.is-added {
    background: #1f9d55;
    color: #fff;
}

.product-card-store.is-store-closed .btn-add-cart,
.product-card-store .btn-add-cart.js-store-closed-action,
.product-card-store.is-store-closed .product-card-qty-btn,
.product-card-store .product-card-qty-btn[data-store-closed="1"] {
    background: #d9d9dc;
    color: #7c7c82;
    cursor: pointer;
}

.product-card-store.is-store-closed .btn-add-cart:hover,
.product-card-store .btn-add-cart.js-store-closed-action:hover,
.product-card-store.is-store-closed .product-card-qty-btn:hover,
.product-card-store .product-card-qty-btn[data-store-closed="1"]:hover {
    opacity: 1;
}
/* FIM CSS PRODUCTS */

/* INICIO CSS STORE REVIEWS PAGE */
.store-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.store-reviews-card {
    padding: 12px;
}

.store-reviews-card-main {
    display: block;
    min-width: 0;
}

.store-reviews-card-body {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-reviews-card-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
}

.store-reviews-card-head {
    min-width: 0;
}

.store-reviews-card-title {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
}

.store-reviews-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.store-reviews-card-order {
    color: #444;
    font-weight: 800;
    text-transform: uppercase;
}

.store-reviews-card-date {
    color: #777;
    font-weight: 700;
}

.store-reviews-card-score {
    margin: 0;
    white-space: nowrap;
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    color: #df1f26;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    align-self: start;
    justify-self: end;
    text-align: right;
}

.store-reviews-card-score i {
    font-size: 14px;
}

.store-reviews-card-text {
    margin: 0;
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
    white-space: normal;
    display: block;
    overflow: visible;
    min-height: 0;
}

.store-review-reply-card {
    margin-top: 2px;
    border: 1px solid #e1e1e1;
    background: #f9f9f9;
    border-radius: 16px;
    padding: 12px 13px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-review-reply-card__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.store-review-reply-card__text {
    margin: 0;
    color: #333;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 700;
    white-space: pre-line;
    word-break: break-word;
}

.store-review-reply-card__footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 2px;
}

.store-review-reply-card__date {
    color: #777;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.store-reviews-pagination {
    margin-top: 16px;
}

.store-reviews-pagination .pagination {
    margin: 0;
}

@media (max-width: 640px) {
    .store-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-reviews-card-top {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 10px;
    }

    .store-reviews-card-title {
        font-size: 15px;
    }

    .store-reviews-card-meta {
        gap: 6px;
        font-size: 11px;
    }

    .store-reviews-card-score {
        font-size: 18px;
        justify-self: end;
        align-self: start;
        text-align: right;
        white-space: nowrap;
    }

    .store-reviews-card-text,
    .store-review-reply-card__text {
        font-size: 12px;
    }

    .store-review-reply-card {
        border-radius: 14px;
        padding: 11px 12px;
    }

    .store-review-reply-card__footer {
        justify-content: flex-end;
    }

    .store-review-reply-card__date {
        text-align: right;
        white-space: nowrap;
    }
}
/* FIM CSS STORE REVIEWS PAGE */

/* PRODUCT OPTIONS MODAL */
/* INICIO CSS PRODUCT OPTIONS MODAL */
.cliente-modal-product {
    width: 100%;
    max-width: 390px;
    max-height: calc(100vh - 10px);
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-self: center;
    position: relative;
}

.cliente-modal-product-head {
    padding: 10px 10px 8px;
    border-bottom: 1px solid #efefef;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    background: #fff;
    flex: 0 0 auto;
}

.cliente-modal-product-head-main {
    min-width: 0;
    padding-right: 42px;
}

.cliente-modal-product-name {
    margin-top: 2px;
    color: #555;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.cliente-modal-product-body {
    padding: 8px 6px 4px;
    overflow-y: auto;
    flex: 1 1 auto;
    background: #fafafa;
}

.product-options-group {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 10px;
}

.product-options-group-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.product-options-group-title {
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
}

.product-options-group-subtitle {
    font-size: 12px;
    color: #df1f26;
    font-weight: 700;
    margin-top: 3px;
}

.product-options-group-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.product-options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 10px;
    border: 1px solid #efefef;
    border-radius: 14px;
    cursor: pointer;
    background: #fff;
}

.product-option-item-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.product-option-item-main input {
    accent-color: #df1f26;
}

.product-option-item-name {
    font-size: 14px;
    color: #333;
    line-height: 1.45;
}

.product-option-item-price {
    font-size: 14px;
    color: #222;
    white-space: nowrap;
    font-weight: 800;
}

.product-options-group-error {
    margin-top: 8px;
    color: #df1f26;
    font-size: 12px;
    font-weight: 700;
}

.cliente-modal-product-footer {
    position: sticky;
    bottom: 0;
    background: linear-gradient(to top, #ffffff 88%, rgba(255,255,255,0.92) 100%);
    padding: 8px 6px 6px;
    border-top: 1px solid #ececec;
    flex: 0 0 auto;
}

.cliente-modal-product-footer-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 12px 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.cliente-modal-product-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.cliente-modal-product-footer-label {
    font-size: 14px;
    font-weight: 700;
    color: #666;
}

.cliente-modal-product-total {
    font-size: 20px;
    font-weight: 800;
    color: #df1f26;
}

.cliente-modal-product-submit {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
}

.cliente-product-remove-modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 18px 14px 14px;
    border-radius: 22px;
}

.cliente-product-remove-modal-text {
    margin-bottom: 12px;
}

.cliente-product-remove-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 14px;
}

.cliente-product-remove-entry {
    border: 1px solid #ececec;
    background: #fafafa;
    border-radius: 16px;
    padding: 12px;
}

.cliente-product-remove-entry-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.cliente-product-remove-entry-head-main {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.cliente-product-remove-entry-head-side {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cliente-product-remove-entry-title {
    font-size: 12px;
    line-height: 1.2;
    color: #666;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cliente-product-remove-entry-qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff1f2;
    color: #df1f26;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.cliente-product-remove-entry-remove {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #fff1f1;
    color: #c62828;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 12px;
    flex: 0 0 auto;
}

.cliente-product-remove-entry-remove:hover {
    opacity: 0.92;
}

.cliente-product-remove-entry-note {
    color: #777;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.cliente-product-remove-addon-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cliente-product-remove-addon-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.cliente-product-remove-addon-name {
    min-width: 0;
    color: #444;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.cliente-product-remove-addon-price {
    flex: 0 0 auto;
    color: #222;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.cliente-product-remove-no-addons,
.cliente-product-remove-empty {
    color: #777;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

.cliente-product-remove-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.cliente-product-remove-btn {
    width: 100%;
}

.cliente-product-remove-btn.is-disabled,
.cliente-product-remove-btn:disabled {
    opacity: 0.55;
    cursor: default;
}

@media (max-width: 640px) {
    .cliente-product-remove-entry-remove {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .cliente-product-remove-entry-head-side {
        gap: 6px;
    }
}

/* INICIO CSS STORE PAGE PRODUCT DETAILS MODAL */

.product-card-store-image-trigger,
.product-card-store-title-trigger {
    cursor: pointer;
}

.product-card-store-image-trigger {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    border-radius: inherit;
    overflow: hidden;
}

.product-card-store-image-trigger .product-card-store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-store-title-trigger {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    color: inherit;
    font: inherit;
}

.product-card-store-title-trigger:hover {
    opacity: 0.92;
}

.cliente-modal-product-view {
    width: 100%;
    max-width: 430px;
    max-height: calc(100vh - 10px);
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-self: center;
    position: relative;
}

.cliente-modal-product-view-head {
    padding: 12px 12px 8px;
    border-bottom: 1px solid #efefef;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    background: #fff;
    flex: 0 0 auto;
}

.cliente-modal-product-view-head-main {
    min-width: 0;
    padding-right: 40px;
}

.cliente-modal-product-view-body {
    padding: 12px;
    overflow-y: auto;
    flex: 1 1 auto;
    background: #fff;
}

.cliente-modal-product-view-gallery {
    margin-bottom: 14px;
}

.cliente-modal-product-view-slider {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    background: #f0f0f0;
    border: 1px solid #ececec;
}

.cliente-modal-product-view-track {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.28s ease;
    will-change: transform;
}

.cliente-modal-product-view-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    background: #f3f3f3;
}

.cliente-modal-product-view-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cliente-modal-product-view-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
    cursor: pointer;
}

.cliente-modal-product-view-nav.is-prev {
    left: 10px;
}

.cliente-modal-product-view-nav.is-next {
    right: 10px;
}

.cliente-modal-product-view-nav.is-hidden {
    display: none;
}

.cliente-modal-product-view-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.cliente-modal-product-view-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d5d5d8;
    cursor: pointer;
    transition: 0.2s ease;
}

.cliente-modal-product-view-dot.is-active {
    width: 22px;
    background: #df1f26;
}

.cliente-modal-product-view-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(54px, 54px));
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.cliente-modal-product-view-thumb {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #f3f3f3;
    cursor: pointer;
    padding: 0;
}

.cliente-modal-product-view-thumb.is-active {
    border-color: #df1f26;
}

.cliente-modal-product-view-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cliente-modal-product-view-title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
}

.cliente-modal-product-view-price {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
    color: #df1f26;
}

.cliente-modal-product-view-description {
    color: #555;
    font-size: 14px;
    line-height: 1.65;
    white-space: pre-line;
}

@media (max-width: 640px) {
    .cliente-modal-product-view {
        max-width: 100%;
        max-height: calc(100vh - 8px);
        border-radius: 20px;
    }

    .cliente-modal-product-view-head {
        padding: 10px 10px 6px;
    }

    .cliente-modal-product-view-head-main {
        padding-right: 36px;
    }

    .cliente-modal-product-view-body {
        padding: 10px;
    }

    .cliente-modal-product-view-slider {
        height: 220px;
        border-radius: 18px;
    }

    .cliente-modal-product-view-title {
        font-size: 20px;
    }

    .cliente-modal-product-view-price {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .cliente-modal-product-view-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .cliente-modal-product-view-nav {
        width: 32px;
        height: 32px;
    }
}

/* FIM CSS STORE PAGE PRODUCT DETAILS MODAL */
/* FIM CSS PRODUCT OPTIONS MODAL */

/* CARRINHO */
/* INICIO CSS CARRINHO */
.cart-page {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-page-compact {
    margin-bottom: 20px;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-store-card {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.cart-store-card-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
}

.cart-store-card-head-main {
    min-width: 0;
    flex: 1 1 auto;
}

.cart-store-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 5px;
    font-weight: 700;
}

.cart-store-name {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
    margin-bottom: 7px;
}

.cart-store-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: visible;
}

.cart-store-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #666;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    flex: 0 0 auto;
    min-width: 0;
}

.cart-store-meta-item i {
    color: #df1f26;
    font-size: 11px;
    flex: 0 0 auto;
}

.cart-store-link {
    color: #df1f26;
    font-size: 12px;
    font-weight: 700;
}

.cart-store-link-top {
    align-self: start;
    justify-self: end;
    white-space: nowrap;
}

.cart-store-link-compact {
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.cart-item {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.cart-item-image-wrap {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
}

.cart-item-image-wrap-compact {
    width: 64px;
    height: 64px;
}

.cart-item-image,
.cart-item-image-placeholder {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    background: #eee;
}

.cart-item-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 10px;
    text-align: center;
    padding: 6px;
}

.cart-item-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cart-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.cart-item-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
    flex: 1 1 auto;
    min-width: 0;
}

.cart-item-remove-top {
    flex: 0 0 auto;
    padding: 6px 9px;
    font-size: 11px;
    border-radius: 12px;
    min-height: 36px;
}

.cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 8px;
    color: #666;
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.cart-item-addons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
}

.cart-item-addon {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 8px 9px;
    font-size: 11px;
    color: #444;
}

.cart-item-total {
    color: #222;
    font-weight: 800;
    font-size: 13px;
    margin-top: 1px;
}

.cart-summary {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #efefef;
}

.cart-summary-compact {
    padding: 14px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    font-size: 14px;
    line-height: 1.35;
}

.cart-summary-total {
    border-top: 1px solid #eee;
    margin-top: 4px;
    padding-top: 10px;
    font-size: 16px;
}

.cart-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cart-actions-compact .btn,
.cart-actions-compact a.btn {
    min-height: 44px;
}

.cart-card-unified {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.cart-card-unified-compact {
    border: 1px solid #efefef;
    padding: 12px;
    border-radius: 18px;
}

.cart-store-card-unified {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.cart-store-card-unified-compact {
    padding: 0;
}

.cart-unified-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cart-unified-divider {
    border: 0;
    border-top: 1px solid #efefef;
    margin: 12px 0;
}

.cart-item-unified {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
}

.cart-item-unified-compact {
    gap: 10px;
}

.cart-item-head-unified {
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.cart-item-head-unified-compact {
    gap: 8px;
}

.cart-item-head-main {
    min-width: 0;
    flex: 1 1 auto;
}

.cart-item-actions {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    flex: 0 0 auto;
}

.cart-icon-btn,
.cart-addon-action {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #f3f3f3;
    color: #444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 12px;
}

.cart-icon-btn-danger,
.cart-addon-action-danger {
    background: #fff1f1;
    color: #c62828;
}

.cart-item-total-right {
    min-width: 74px;
    text-align: right;
    font-size: 14px;
    font-weight: 800;
    color: #222;
    white-space: nowrap;
    margin-top: 2px;
}

.cart-item-addon-advanced {
    align-items: center;
    padding: 8px 9px;
}

.cart-item-addon-advanced-compact {
    padding: 8px 9px;
    border-radius: 10px;
}

.cart-item-addon-main {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    font-size: 11px;
    line-height: 1.35;
}

.cart-item-addon-main strong {
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.cart-item-addon-actions {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
}

.cart-section-header-compact {
    margin-bottom: 10px;
}

.cart-section-title-compact {
    font-size: 24px;
    line-height: 1.1;
}

@media (max-width: 640px) {
    .cart-page {
        gap: 10px;
    }

    .cart-store-card {
        border-radius: 16px;
        padding: 12px;
    }

    .cart-store-card-head {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cart-store-link-top {
        justify-self: start;
        align-self: start;
    }

    .cart-store-name {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .cart-store-meta {
        gap: 5px;
        flex-wrap: nowrap;
        overflow: visible;
    }

    .cart-store-meta-item {
        font-size: 10px;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .cart-store-link-compact {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 11px;
        border-radius: 11px;
    }

    .cart-card-unified,
    .cart-card-unified-compact {
        padding: 10px;
        border-radius: 16px;
    }

    .cart-unified-divider {
        margin: 10px 0;
    }

    .cart-item,
    .cart-item-unified {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 8px;
    }

    .cart-item-image-wrap,
    .cart-item-image-wrap-compact {
        width: 60px;
        height: 60px;
    }

    .cart-item-image,
    .cart-item-image-placeholder {
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }

    .cart-item-title {
        font-size: 13px;
    }

    .cart-item-meta {
        font-size: 10px;
        gap: 4px 6px;
        margin-bottom: 7px;
    }

    .cart-item-actions {
        gap: 4px;
    }

    .cart-icon-btn,
    .cart-addon-action {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .cart-item-total-right {
        min-width: 68px;
        font-size: 13px;
    }

    .cart-item-addon-advanced,
    .cart-item-addon-advanced-compact {
        padding: 7px 8px;
    }

    .cart-item-addon-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        font-size: 10px;
    }

    .cart-item-addon-main strong {
        font-size: 10px;
    }

    .cart-summary,
    .cart-summary-compact {
        padding: 12px;
        border-radius: 16px;
    }

    .cart-summary-row {
        font-size: 13px;
        padding: 6px 0;
    }

    .cart-summary-total {
        font-size: 15px;
        padding-top: 9px;
    }

    .cart-actions .btn,
    .cart-actions a.btn {
        width: 100%;
    }

    .cart-actions-compact .btn,
    .cart-actions-compact a.btn {
        min-height: 42px;
    }

    .cart-section-title-compact {
        font-size: 22px;
    }

    .cart-item-title-row {
        gap: 6px;
        margin-bottom: 3px;
    }

    .cart-item-title-single-line {
        font-size: 13px;
    }

    .cart-item-meta-under-title {
        font-size: 10px;
    }
}
/* FIM CSS CARRINHO */

/* CHECKOUT */
/* INICIO CSS CHECKOUT */
.checkout-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 14px;
    align-items: start;
}

.checkout-main-column,
.checkout-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.checkout-card-compact {
    border: 1px solid #efefef;
}

.checkout-card-title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.checkout-card-title-compact {
    margin-bottom: 12px;
    font-size: 18px;
}

.checkout-store-box {
    background: #f8f8f8;
    border: 1px solid #efefef;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.checkout-store-box-compact {
    padding: 10px 12px;
    margin-bottom: 10px;
}

.checkout-store-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #888;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.checkout-store-name {
    font-size: 15px;
    line-height: 1.2;
    color: #222;
    font-weight: 800;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.checkout-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.checkout-item-order {
    align-items: flex-start;
}

.checkout-item-info {
    min-width: 0;
    flex: 1 1 auto;
}

.checkout-item-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.checkout-item-title {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
    color: #222;
}

.checkout-item-meta {
    margin: 0;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

.checkout-item-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.checkout-icon-btn,
.checkout-addon-action {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #f3f3f3;
    color: #444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.checkout-icon-btn-danger,
.checkout-addon-action-danger {
    background: #fff1f1;
    color: #c62828;
}

.checkout-item-total {
    min-width: 78px;
    text-align: right;
    font-size: 15px;
    font-weight: 800;
    color: #222;
    white-space: nowrap;
    align-self: flex-start;
    padding-top: 1px;
}

.checkout-item-addons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.checkout-addon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 8px 9px;
}

.checkout-addon-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.checkout-addon-name {
    font-size: 11px;
    color: #444;
    line-height: 1.35;
}

.checkout-addon-price {
    font-size: 11px;
    color: #222;
    font-weight: 800;
}

.checkout-addon-actions {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.35;
}

.checkout-summary-row strong {
    font-weight: 800;
}

.checkout-summary-total {
    border-top: 1px solid #ececec;
    margin-top: 4px;
    padding-top: 12px;
    font-size: 17px;
}

.checkout-summary-wallet strong {
    color: #1f7a43;
}

.checkout-summary-payable {
    border-top: 1px dashed #ececec;
    margin-top: 2px;
    padding-top: 12px;
}

.checkout-note {
    background: #fafafa;
    border: 1px solid #efefef;
    border-radius: 12px;
    padding: 10px 11px;
    color: #555;
    font-size: 12px;
    line-height: 1.45;
    margin-top: 5px;
}

.checkout-address-item.is-selected {
    border: 1px solid #df1f26;
    border-radius: 14px;
    padding: 10px;
    background: #fff8f8;
}

.checkout-selected-badge {
    color: #df1f26;
    font-size: 11px;
    font-weight: 700;
}

.checkout-address-title {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.checkout-address-tag {
    font-size: 13px;
    font-weight: 800;
}

.checkout-address-item .js-select-checkout-address {
    min-width: 76px;
    justify-content: center;
    padding: 10px 12px;
}

.checkout-payment-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    border: 1px solid #ececec;
    border-radius: 14px;
    cursor: pointer;
    background: #fff;
}

.checkout-payment-option strong {
    font-size: 14px;
    line-height: 1.25;
}

.checkout-payment-option small {
    font-size: 11px;
    line-height: 1.35;
}

.checkout-fulfillment-action {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.checkout-fulfillment-btn {
    min-width: 160px;
    justify-content: center;
    border-radius: 14px;
    background: #df1f26;
    color: #fff;
}

.checkout-address-manage {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.checkout-address-manage-btn {
    min-width: 210px;
    justify-content: center;
}

.checkout-wallet-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-wallet-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkout-wallet-choice {
    display: block;
    cursor: pointer;
}

.checkout-wallet-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-wallet-choice-box {
    min-height: 62px;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #fff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    transition: 0.2s ease;
}

.checkout-wallet-choice-box strong {
    font-size: 13px;
    line-height: 1.2;
    color: #222;
}

.checkout-wallet-choice-box small {
    font-size: 11px;
    line-height: 1.3;
    color: #777;
}

.checkout-wallet-choice input:checked + .checkout-wallet-choice-box {
    border-color: #df1f26;
    box-shadow: 0 0 0 3px rgba(223, 31, 38, 0.08);
    background: #fff8f8;
}

.checkout-wallet-choice input:disabled + .checkout-wallet-choice-box {
    opacity: 0.55;
    cursor: not-allowed;
    background: #f7f7f7;
}

.checkout-accordion {
    border: 1px solid #efefef;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.checkout-accordion-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 13px;
    font-size: 14px;
    font-weight: 800;
    color: #222;
}

.checkout-accordion-summary::-webkit-details-marker {
    display: none;
}

.checkout-accordion-content {
    padding: 0 13px 13px;
}

.checkout-section-header-compact {
    margin-bottom: 12px;
}

.checkout-section-title-compact {
    font-size: 24px;
    line-height: 1.1;
}

@media (max-width: 991px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .checkout-page {
        margin-bottom: 20px;
    }

    .checkout-card {
        border-radius: 16px;
        padding: 12px;
    }

    .checkout-card-title,
    .checkout-card-title-compact {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .checkout-store-box,
    .checkout-store-box-compact {
        padding: 9px 10px;
        margin-bottom: 8px;
        border-radius: 12px;
    }

    .checkout-store-name {
        font-size: 14px;
    }

    .checkout-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        padding-bottom: 8px;
    }

    .checkout-item-order {
        flex-direction: row;
        align-items: flex-start;
    }

    .checkout-item-title {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .checkout-item-meta {
        font-size: 11px;
    }

    .checkout-item-total {
        min-width: 72px;
        font-size: 14px;
    }

    .checkout-item-topline {
        gap: 8px;
        margin-bottom: 3px;
    }

    .checkout-item-actions {
        gap: 4px;
    }

    .checkout-icon-btn,
    .checkout-addon-action {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .checkout-addon-row {
        align-items: flex-start;
        padding: 7px 8px;
        border-radius: 10px;
    }

    .checkout-addon-name,
    .checkout-addon-price {
        font-size: 10px;
    }

    .checkout-summary-row {
        font-size: 13px;
        padding: 7px 0;
    }

    .checkout-summary-total {
        font-size: 16px;
        padding-top: 10px;
    }

    .checkout-note {
        font-size: 11px;
        padding: 9px 10px;
        border-radius: 10px;
    }

    .checkout-payment-option {
        padding: 10px;
        border-radius: 12px;
    }

    .checkout-payment-option strong {
        font-size: 13px;
    }

    .checkout-payment-option small {
        font-size: 10px;
    }

    .checkout-wallet-selector {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .checkout-wallet-choice-box {
        min-height: 58px;
        padding: 9px;
        border-radius: 12px;
    }

    .checkout-wallet-choice-box strong {
        font-size: 12px;
    }

    .checkout-wallet-choice-box small {
        font-size: 10px;
    }

    .checkout-fulfillment-btn,
    .checkout-address-manage-btn {
        width: 100%;
        min-width: 0;
    }

    .checkout-accordion-summary {
        padding: 10px 11px;
        font-size: 13px;
    }

    .checkout-accordion-content {
        padding: 0 11px 11px;
    }

    .checkout-section-title-compact {
        font-size: 22px;
    }
}
/* FIM CSS CHECKOUT */

/* AUTH */
/* INICIO CSS AUTH */
.cliente-auth-page {
    min-height: calc(100vh - 280px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0 28px;
}

.cliente-auth-shell {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.cliente-auth-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

.cliente-auth-logo-wrap {
    text-align: center;
    margin-bottom: 18px;
}

.cliente-auth-logo {
    max-width: 190px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cliente-auth-header {
    text-align: center;
    margin-bottom: 22px;
}

.cliente-auth-title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.cliente-auth-subtitle {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.cliente-auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #f3f4f6;
    padding: 6px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.cliente-auth-tab {
    appearance: none;
    border: 0;
    background: transparent;
    height: 44px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: 0.2s ease;
}

.cliente-auth-tab.is-active {
    background: #df1f26;
    color: #fff;
    box-shadow: 0 6px 18px rgba(223, 31, 38, 0.22);
}

.cliente-auth-panel {
    display: none;
}

.cliente-auth-panel.is-active {
    display: block;
}

.cliente-auth-alert {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.cliente-auth-alert-error {
    background: #fff1f1;
    color: #c62828;
    border: 1px solid #ffd6d6;
}

.cliente-auth-alert-info {
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
}

.cliente-auth-alert-success {
    background: #eefaf2;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.cliente-auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cliente-auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cliente-auth-label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.cliente-auth-input {
    width: 100%;
    height: 52px;
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 15px;
    color: #222;
    background: #fff;
    outline: none;
}

.cliente-auth-input:focus {
    border-color: #df1f26;
    box-shadow: 0 0 0 3px rgba(223, 31, 38, 0.10);
}

.cliente-auth-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.cliente-auth-submit {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
    justify-content: center;
}

.cliente-auth-footer {
    margin-top: 18px;
    text-align: center;
}

.cliente-auth-back {
    width: 100%;
    justify-content: center;
}

.cliente-auth-role-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.cliente-auth-role-option {
    display: block;
    cursor: pointer;
}

.cliente-auth-role-option input {
    display: none;
}

.cliente-auth-role-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 12px;
    background: #fff;
    transition: 0.2s ease;
}

.cliente-auth-role-option input:checked + .cliente-auth-role-card {
    border-color: #df1f26;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(223, 31, 38, 0.08);
}

.cliente-auth-role-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #f3f4f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #df1f26;
    font-size: 18px;
    flex-shrink: 0;
}

.cliente-auth-role-texts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cliente-auth-role-texts strong {
    font-size: 15px;
    color: #111827;
    line-height: 1.2;
}

.cliente-auth-role-texts small {
    font-size: 12px;
    line-height: 1.4;
    color: #6b7280;
}

@media (max-width: 640px) {
    .cliente-auth-page {
        min-height: auto;
        align-items: flex-start;
        padding: 10px 0 22px;
    }

    .cliente-auth-card {
        max-width: 100%;
        border-radius: 18px;
        padding: 16px 14px;
        box-shadow: none;
        border: 1px solid #f1f1f1;
    }

    .cliente-auth-header {
        margin-bottom: 18px;
    }

    .cliente-auth-title {
        font-size: 22px;
    }

    .cliente-auth-subtitle {
        font-size: 13px;
        line-height: 1.5;
    }

    .cliente-auth-tabs {
        margin-bottom: 16px;
        gap: 6px;
        padding: 5px;
        border-radius: 13px;
    }

    .cliente-auth-tab {
        height: 40px;
        font-size: 13px;
    }

    .cliente-auth-form {
        gap: 14px;
    }

    .cliente-auth-field {
        gap: 6px;
    }

    .cliente-auth-label {
        font-size: 13px;
    }

    .cliente-auth-input {
        height: 46px;
        font-size: 14px;
        border-radius: 12px;
        padding: 0 14px;
    }

    .cliente-auth-submit {
        min-height: 46px;
        font-size: 14px;
    }

    .cliente-auth-alert {
        padding: 12px 13px;
        margin-bottom: 14px;
        font-size: 13px;
        border-radius: 12px;
    }

    .cliente-auth-role-card {
        padding: 11px;
        border-radius: 14px;
    }

    .cliente-auth-role-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 12px;
    }

    .cliente-auth-role-texts strong {
        font-size: 14px;
    }

    .cliente-auth-role-texts small {
        font-size: 11px;
    }
}
/* FIM CSS AUTH */

/* EMPTY */
/* INICIO CSS EMPTY */
.empty-state {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.empty-state-title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
}

.empty-state-text {
    margin: 0 0 18px;
    color: #666;
    font-size: 15px;
}
/* FIM CSS EMPTY */

/* BUTTONS */
/* INICIO CSS BUTTONS */
.btn {
    border: 0;
    border-radius: 14px;
    padding: 11px 15px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.btn-primary {
    background: #df1f26;
    color: #fff;
}

.btn-primary:hover {
    opacity: 0.96;
}

.btn-secondary {
    background: #ececec;
    color: #333;
}

.btn-danger {
    background: #fff1f1;
    color: #c62828;
}
/* FIM CSS BUTTONS */

/* TOAST */
/* INICIO CSS TOAST */
.cliente-toast {
    position: fixed;
    right: 16px;
    bottom: 100px;
    z-index: 9999;
    max-width: 320px;
    padding: 14px 16px;
    border-radius: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    display: none;
}

.cliente-toast-success {
    background: #1f9d55;
}

.cliente-toast-error {
    background: #df1f26;
}
/* FIM CSS TOAST */

/* MODAL */
/* INICIO CSS MODAL */

body.cliente-modal-open {
    overflow: hidden;
}

.cliente-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.cliente-modal {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

.cliente-modal-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
}

.cliente-modal-text {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.cliente-modal-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
/* FIM CSS MODAL */

/* STATUS PEDIDOS */
/* INICIO CSS STATUS PEDIDOS */
.badge-color-1 {
    color: #fff !important;
    background-color: #FACC00 !important;
}

.badge-color-2 {
    color: #fff !important;
    background-color: #20A13D !important;
}

.badge-color-3 {
    color: #fff !important;
    background-color: #1e8449 !important;
}

.badge-color-4 {
    color: #fff !important;
    background-color: #f1c40f !important;
}

.badge-color-5 {
    color: #fff !important;
    background-color: #3498db !important;
}

.badge-color-6 {
    color: #fff !important;
    background-color: #ff0712 !important;
}

.badge-color-7 {
    color: #fff !important;
    background-color: #000 !important;
}

.badge-color-8 {
    color: #fff !important;
    background-color: #34495e !important;
}

.badge-color-9 {
    color: #fff !important;
    background-color: #884ea0 !important;
}

.badge-color-10 {
    color: #fff !important;
    background-color: #a9cce3 !important;
}

.badge-color-11 {
    color: #fff !important;
    background-color: #17202a !important;
}
/* FIM CSS STATUS PEDIDOS */

/* PEDIDOS */
/* INICIO CSS PEDIDOS */
.cliente-orders-page {
    margin-bottom: 26px;
}

.cliente-orders-box {
    max-width: 820px;
    margin: 0 auto;
}

.cliente-orders-title {
    margin: 0 0 8px;
}

.cliente-orders-subtitle {
    margin: 0 0 18px;
    color: #666;
}

.cliente-orders-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cliente-order-card-link {
    display: block;
}

.cliente-order-card-clean {
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #efefef;
    transition: 0.2s ease;
}

.cliente-order-card-link:hover .cliente-order-card-clean,
.cliente-order-card-link:focus .cliente-order-card-clean {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.cliente-order-card-clean-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.cliente-order-card-clean-title {
    margin: 0;
    min-width: 0;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
    word-break: break-word;
}

.cliente-order-card-clean-total {
    flex: 0 0 auto;
    font-size: 17px;
    line-height: 1.1;
    font-weight: 800;
    color: #df1f26;
    text-align: right;
    white-space: nowrap;
}

.cliente-order-card-clean-body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.cliente-order-card-clean-meta-list {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cliente-order-card-clean-meta {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #555;
}

.cliente-order-card-clean-meta strong {
    color: #222;
}

.cliente-order-card-clean-status {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.cliente-order-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    max-width: 150px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    white-space: normal;
}

.cliente-orders-loading,
.cliente-orders-end {
    text-align: center;
    padding: 14px 12px;
    font-size: 14px;
    font-weight: 700;
    color: #666;
}

.cliente-orders-sentinel {
    width: 100%;
    height: 2px;
}

@media (max-width: 640px) {
    .cliente-order-card-clean {
        border-radius: 16px;
        padding: 11px;
    }

    .cliente-order-card-clean-top {
        gap: 8px;
        margin-bottom: 9px;
    }

    .cliente-order-card-clean-title {
        font-size: 14px;
    }

    .cliente-order-card-clean-total {
        font-size: 15px;
    }

    .cliente-order-card-clean-body {
        gap: 8px;
    }

    .cliente-order-status-badge {
        min-height: 22px;
        max-width: 122px;
        padding: 4px 8px;
        font-size: 9px;
    }

    .cliente-order-card-clean-meta {
        font-size: 12px;
    }
}
/* FIM CSS PEDIDOS */

/* RESPONSIVO */
/* INICIO CSS RESPONSIVO */
@media (min-width: 992px) {
    .cliente-mobile-home {
        display: none;
    }

    .cliente-desktop-landing {
        display: block;
    }

    .cliente-footer {
        display: none;
    }

    .cliente-header-inner {
        justify-content: center;
    }

    .cliente-header-actions {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: flex-end;
    }
}

@media (max-width: 991px) {
    .cliente-desktop-landing {
        display: none;
    }

    .cliente-mobile-home {
        display: block;
    }

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

    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cliente-header-inner {
        min-height: 74px;
    }

    .cliente-brand-logo {
        height: 40px;
        max-width: 150px;
    }

    .cliente-header-quick-info {
        gap: 8px;
    }

    .cliente-header-location-chip {
        max-width: 180px;
        min-height: 44px;
        padding: 7px 10px;
        border-radius: 16px;
        gap: 8px;
    }

    .cliente-header-location-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .cliente-header-location-label {
        font-size: 9px;
    }

    .cliente-header-location-text {
        font-size: 12px;
    }

    .cliente-cart-link-header {
        min-height: 44px;
        padding: 10px 11px;
    }

    .section-title {
        font-size: 24px;
    }

    .store-category-tabs-wrap {
        top: 0;
    }
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

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

    .cart-item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .cart-item-image-wrap {
        width: 64px;
        height: 64px;
    }

    .cart-item-image,
    .cart-item-image-placeholder {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }

    .cart-item-head {
        gap: 8px;
        align-items: flex-start;
    }

    .cart-item-title {
        font-size: 15px;
        line-height: 1.2;
    }

    .cart-item-remove-top {
        padding: 6px 9px;
        font-size: 11px;
        min-height: 36px;
    }

    .cart-item-meta {
        font-size: 12px;
        gap: 6px 8px;
    }

    .cart-store-card-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 10px;
    }

    .cart-actions .btn,
    .cart-actions a.btn {
        width: 100%;
    }

    .checkout-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .checkout-item-order {
        flex-direction: row;
        align-items: flex-start;
    }

    .checkout-item-info {
        min-width: 0;
        flex: 1 1 auto;
    }

    .checkout-item-total {
        min-width: 76px;
        text-align: right;
        white-space: nowrap;
        font-size: 16px;
    }

    .checkout-item-topline {
        gap: 8px;
    }

    .checkout-item-actions {
        gap: 6px;
    }

    .checkout-icon-btn,
    .checkout-addon-action {
        width: 30px;
        height: 30px;
    }

    .checkout-addon-row {
        align-items: flex-start;
    }

    .checkout-addon-actions {
        gap: 4px;
    }

    .checkout-wallet-selector {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .checkout-wallet-choice-box {
        min-height: 68px;
        padding: 10px;
        border-radius: 14px;
    }

    .checkout-wallet-choice-box strong {
        font-size: 13px;
    }

    .checkout-wallet-choice-box small {
        font-size: 11px;
    }

    .cliente-bottom-nav-item span {
        font-size: 10px;
    }

    .cliente-bottom-nav-item i {
        font-size: 17px;
    }

    .cliente-toast {
        left: 16px;
        right: 16px;
        bottom: 92px;
        max-width: none;
    }

    .cliente-modal-actions .btn {
        width: 100%;
    }

    .product-option-item {
        align-items: flex-start;
        padding: 11px 8px;
    }

    .product-option-item-price {
        font-size: 13px;
    }

    .cliente-home-slide-image {
        height: 144px;
    }

    .cliente-home-store-link {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 12px;
        padding: 12px 10px;
    }

    .cliente-home-store-image-column {
        width: 82px;
        min-height: 82px;
    }

    .cliente-home-store-image-wrap {
        width: 70px;
        height: 70px;
        border-radius: 14px;
        margin-top: 12px;
    }

    .cliente-home-store-title {
        font-size: 17px;
    }

    .cliente-home-store-category-line {
        font-size: 12px;
    }

    .cliente-home-store-info-row {
        gap: 8px;
    }

    .cliente-home-store-info-item {
        font-size: 11px;
    }

    .cliente-home-inline-promo-track {
        grid-auto-columns: 76%;
    }

    .cliente-home-inline-promo-image {
        height: 88px;
    }

    .cliente-home-category-card {
        min-height: 106px;
    }

    .cliente-home-category-card-image-wrap {
        height: 58px;
    }

    .cliente-header-location-chip {
        max-width: 148px;
        padding: 7px 8px;
    }

    .cliente-header-location-text {
        font-size: 11px;
    }

    .cliente-header-location-caret {
        font-size: 10px;
    }

    .cliente-location-modal {
        max-width: 100%;
        padding: 18px 12px 12px;
        border-radius: 20px;
    }

    .cliente-location-option {
        padding: 12px 10px;
        border-radius: 14px;
    }

    .cliente-location-option-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .cliente-location-option-name {
        font-size: 13px;
    }

    .cliente-location-option-meta {
        font-size: 11px;
    }

    .store-page-store-title {
        font-size: 18px;
    }

    .product-card-store {
        padding: 10px;
    }

    .product-card-store-main {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 10px;
    }

    .product-card-store-image-wrap {
        width: 78px;
        height: 78px;
        border-radius: 14px;
    }

    .product-card-store-title {
        font-size: 16px;
    }

    .product-card-store-description {
        font-size: 11px;
        min-height: 30px;
    }

    .product-card-store-price {
        font-size: 18px;
    }

    .product-card-store-description-toggle {
        font-size: 9px;
    }

    .cliente-modal-backdrop {
        padding: 4px;
    }

    .cliente-modal-product {
        max-width: 100%;
        max-height: calc(100vh - 8px);
        border-radius: 20px;
    }

    .cliente-modal-product-head {
        padding: 8px 8px 6px;
    }

    .cliente-modal-product-head-main {
        padding-right: 38px;
    }

    .cliente-modal-close {
        top: 6px;
        right: 6px;
        width: 32px;
        height: 32px;
    }

    .cliente-modal-product-body {
        padding: 6px 4px 2px;
    }

    .product-options-group {
        padding: 8px;
    }

    .cliente-modal-product-footer {
        padding: 6px 4px 4px;
    }

    .cliente-modal-product-footer-card {
        padding: 10px 8px;
    }

    .checkout-fulfillment-btn,
    .checkout-address-manage-btn {
        width: 100%;
    }

    .cart-item-unified {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 10px;
    }

    .cart-item-actions {
        gap: 6px;
    }

    .cart-icon-btn,
    .cart-addon-action {
        width: 30px;
        height: 30px;
    }

    .cart-item-total-right {
        min-width: 72px;
        font-size: 15px;
    }

    .cart-item-addon-advanced {
        align-items: flex-start;
    }

    .cart-item-addon-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
/* FIM CSS RESPONSIVO */

/* MINHA CONTA */
/* INICIO CSS MINHA CONTA */
.cliente-account-page {
    margin-bottom: 26px;
}

.cliente-account-box {
    max-width: 760px;
    margin: 0 auto;
}

.cliente-account-title {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    color: #222;
}

.cliente-account-subtitle {
    margin: 0 0 18px;
    color: #666;
    font-size: 15px;
    line-height: 1.45;
}

.cliente-account-card {
    position: relative;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
}

.cliente-account-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.cliente-account-card-head-main {
    min-width: 0;
    flex: 1 1 auto;
}

.cliente-account-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 6px;
    font-weight: 700;
}

.cliente-account-name {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
    margin-bottom: 8px;
    word-break: break-word;
}

.cliente-account-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.cliente-account-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    min-width: 0;
}

.cliente-account-contact-item i {
    color: #df1f26;
    font-size: 12px;
    flex: 0 0 auto;
}

.cliente-account-address-row {
    position: relative;
    padding-right: 64px;
    min-height: 20px;
}

.cliente-account-address-text {
    color: #555;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    word-break: break-word;
}

.cliente-account-address-text-empty {
    color: #888;
}

.cliente-account-address-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #eefaf2;
    color: #1f7a43;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.cliente-addresses-page {
    max-width: 760px;
    margin: 0 auto;
}

.cliente-addresses-title {
    margin-bottom: 8px;
}

.cliente-addresses-subtitle {
    margin-bottom: 16px;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.cliente-addresses-alert-success {
    margin-bottom: 14px;
    border-left: 4px solid #16a34a;
}

.cliente-addresses-alert-error {
    margin-bottom: 14px;
    border-left: 4px solid #df1f26;
    color: #b42318;
}

.cliente-address-accordion-card {
    margin-bottom: 14px;
    overflow: hidden;
}

.cliente-address-accordion-toggle {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
}

.cliente-address-accordion-toggle-main {
    min-width: 0;
}

.cliente-address-accordion-toggle-text {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.35;
    color: #666;
}

.cliente-address-accordion-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f5f5f5;
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cliente-address-accordion-toggle[aria-expanded="true"] .cliente-address-accordion-icon i {
    transform: rotate(180deg);
}

.cliente-address-accordion-content {
    padding: 0 16px 16px;
}

.cliente-address-form {
    padding-top: 4px;
}

.cliente-address-current-location-wrap {
    margin-bottom: 12px;
}

.cliente-address-location-feedback {
    margin-bottom: 12px;
}

.cliente-address-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
}

.cliente-address-form-field-full {
    grid-column: 1 / -1;
}

.cliente-address-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.cliente-address-form-input {
    width: 100%;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 12px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
}

textarea.cliente-address-form-input {
    min-height: 84px;
    height: auto;
    padding: 12px;
    resize: vertical;
}

.cliente-address-form-help {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
    color: #777;
}

.cliente-address-default-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-top: 12px;
}

.cliente-address-form-actions {
    justify-content: flex-start;
    margin-top: 14px;
    gap: 10px;
    flex-wrap: wrap;
}

.cliente-address-list {
    gap: 0;
}

.cliente-address-card {
    margin-bottom: 8px !important;
}

.cliente-address-card:last-child {
    margin-bottom: 0 !important;
}

.cliente-address-card-head {
    padding-bottom: 0;
}

.cliente-address-card-title {
    font-size: 14px !important;
    line-height: 1.35;
    margin-top: 2px;
}

.cliente-address-card-meta {
    gap: 6px 12px;
    margin-top: 6px;
}

.cliente-address-card-meta .cart-store-meta-item {
    font-size: 12px;
    line-height: 1.3;
}

.cliente-address-card-actions {
    justify-content: flex-start;
    margin-top: 10px !important;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.cliente-address-card-actions .btn {
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
    border-radius: 10px;
}

@media (max-width: 640px) {
    .cliente-address-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cliente-address-accordion-toggle {
        padding: 13px 14px;
    }

    .cliente-address-accordion-content {
        padding: 0 14px 14px;
    }

    .cliente-address-card {
        margin-bottom: 6px !important;
    }

    .cliente-address-card-title {
        font-size: 13px !important;
    }

    .cliente-address-card-meta .cart-store-meta-item {
        font-size: 11px;
    }

    .cliente-address-card-actions {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .cliente-address-card-actions form {
        width: 100%;
    }

    .cliente-address-card-actions .btn,
    .cliente-address-card-actions button.btn {
        width: 100%;
        min-height: 40px;
        padding: 0 10px;
        font-size: 12px;
    }

    .cliente-address-form-edit {
        padding: 10px;
        border-radius: 14px;
    }

    .cliente-account-title {
        font-size: 24px;
    }

    .cliente-account-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .cliente-account-card {
        border-radius: 16px;
        padding: 12px;
        margin-bottom: 10px;
    }

    .cliente-account-name {
        font-size: 15px;
    }

    .cliente-account-contact-row {
        gap: 8px 10px;
        margin-bottom: 7px;
    }

    .cliente-account-contact-item {
        font-size: 11px;
    }

    .cliente-account-address-row {
        padding-right: 58px;
    }

    .cliente-account-address-text {
        font-size: 11px;
    }

    .cliente-account-address-badge {
        min-height: 17px;
        padding: 2px 6px;
        font-size: 9px;
    }

    .cliente-account-wallet-value {
        font-size: 20px;
    }

    .cliente-account-grid {
        gap: 10px;
        margin-top: 12px;
    }

    .cliente-account-grid-item {
        min-height: 102px;
        padding: 12px 8px;
        border-radius: 16px;
        gap: 8px;
    }

    .cliente-account-grid-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .cliente-account-grid-text {
        font-size: 12px;
    }

    .cliente-modal-tax-number {
        max-width: 100%;
        border-radius: 18px;
        padding: 18px;
    }

    .cliente-account-name-tax-number {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }

    .cliente-order-cancel-modal {
        width: calc(100% - 56px);
        max-width: none;
        padding: 16px 12px 14px;
        border-radius: 20px;
        margin: 6px auto;
    }

    .cliente-order-cancel-modal .cliente-modal-title {
        font-size: 20px;
        margin-right: 40px;
        margin-bottom: 12px;
    }

    .cliente-order-reason-options {
        max-height: 220px;
    }

    .cliente-order-cancel-confirm,
    .cliente-order-cancel-back {
        min-width: 122px;
    }
}

.cliente-address-card-actions .btn,
.cliente-address-card-actions button.btn,
.cliente-address-card-actions form {
    margin: 0;
}

.cliente-address-edit-toggle {
    min-width: 96px;
    text-align: center;
}

.cliente-address-delete-btn {
    background: #f3f3f3;
    color: #555;
}

.cliente-address-edit-box {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #efefef;
}

.cliente-address-edit-title {
    font-size: 13px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cliente-address-form-edit {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 12px;
}

.cliente-address-form-actions-edit {
    margin-top: 12px;
}

.cliente-account-wallet-value {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    color: #df1f26;
    margin-bottom: 4px;
}

.cliente-account-wallet-help {
    color: #666;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.cliente-account-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.cliente-account-grid-item {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    min-height: 110px;
    padding: 14px 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: 0.2s ease;
}

.cliente-account-grid-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.cliente-account-grid-item-disabled {
    opacity: 0.92;
    cursor: default;
}

.cliente-account-grid-item-logout {
    padding: 0;
    border: 0;
    background: #fff;
}

.cliente-account-grid-button {
    width: 100%;
    min-height: 100%;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    cursor: pointer;
}

.cliente-account-grid-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex: 0 0 auto;
}

.cliente-account-grid-icon.is-blue {
    background: #4a90e2;
}

.cliente-account-grid-icon.is-purple {
    background: #9b59b6;
}

.cliente-account-grid-icon.is-yellow {
    background: #f1c40f;
}

.cliente-account-grid-icon.is-green {
    background: #43a047;
}

.cliente-account-grid-icon.is-pink {
    background: #e91e63;
}

.cliente-account-grid-icon.is-teal {
    background: #2e8b57;
}

.cliente-account-grid-icon.is-orange {
    background: #fff4e8;
    color: #c96a00;
}

.cliente-account-grid-text {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    color: #333;
    text-transform: lowercase;
    word-break: break-word;
}


.cliente-account-logout-btn {
    background: #ececec;
    color: #333;
    border: 0;
    border-radius: 999px;
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cliente-account-name-tax-number {
    display: inline-block;
    margin-left: 4px;
    font-size: 12px;
    line-height: 1.2;
    color: #777;
    font-weight: 700;
}

.cliente-account-grid-subtext {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.2;
    color: #777;
    font-weight: 700;
}

.cliente-modal-tax-number {
    position: relative;
    max-width: 380px;
    padding: 20px;
}

.cliente-modal-actions-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cliente-modal-actions-column .btn {
    width: 100%;
}

.cliente-order-cancel-box {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cliente-order-cancel-help {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
}

.cliente-order-cancel-modal {
    position: relative;
    max-width: 360px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    width: calc(100% - 12px);
    border-radius: 22px;
    padding: 18px 14px 14px;
    margin: 8px auto;
    box-sizing: border-box;
}

.wallet-pending-debt-card {
    border: 1px solid #f3c7c7;
    background: #fff6f6;
}

.cliente-order-cancel-modal .cliente-modal-title {
    margin: 0 46px 12px 0;
    font-size: 22px;
    line-height: 1.15;
}

.cliente-order-cancel-alert {
    margin-bottom: 12px;
    background: #fff8e7;
    color: #8a5a00;
}

.cliente-order-cancel-modal .cliente-auth-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.cliente-order-cancel-modal .cliente-auth-field {
    margin-bottom: 10px;
}

.cliente-order-cancel-modal .cliente-auth-input,
.cliente-order-cancel-modal textarea.cliente-auth-input {
    width: 100%;
    min-height: 50px;
    border-radius: 18px;
    font-size: 14px;
    padding: 13px 14px;
    box-sizing: border-box;
    background: #fff;
}

.cliente-order-cancel-modal textarea.cliente-auth-input {
    min-height: 84px;
    resize: none;
}

.cliente-order-reason-trigger {
    width: 100%;
    min-height: 52px;
    border: 1px solid #e4e4e4;
    border-radius: 18px;
    background: #fff;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    color: #222;
    text-align: left;
    box-sizing: border-box;
}

.cliente-order-reason-trigger.is-open {
    border-color: #d62828;
    box-shadow: 0 0 0 2px rgba(214, 40, 40, 0.08);
}

.cliente-order-reason-picker {
    margin-top: 8px;
    border: 1px solid #ececec;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.cliente-order-reason-picker-head {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}

.cliente-order-reason-picker-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #f3f3f3;
    color: #444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.cliente-order-reason-options {
    max-height: 250px;
    overflow-y: auto;
    padding: 6px;
}

.cliente-order-reason-option {
    width: 100%;
    min-height: 44px;
    border: 0;
    background: #fff;
    border-radius: 14px;
    padding: 10px 12px;
    text-align: left;
    font-size: 14px;
    color: #222;
    display: block;
}

.cliente-order-reason-option + .cliente-order-reason-option {
    margin-top: 4px;
}

.cliente-order-reason-option:hover,
.cliente-order-reason-option:focus {
    background: #f7f7f7;
}

.cliente-order-reason-option.is-selected {
    background: rgba(214, 40, 40, 0.08);
    color: #d62828;
    font-weight: 700;
}

.cliente-order-cancel-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 4px;
    flex-wrap: wrap;
}

.cliente-order-cancel-confirm,
.cliente-order-cancel-back {
    min-width: 128px;
    height: 46px;
    border-radius: 16px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cliente-order-cancel-confirm {
    font-weight: 700;
}

.cliente-order-cancel-back {
    font-weight: 600;
}

.cliente-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #f1f1f1;
    color: #444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    box-shadow: none;
}

.cliente-modal-close:hover,
.cliente-modal-close:focus {
    background: #e7e7e7;
    color: #222;
}
/* FIM CSS MINHA CONTA */

/* FAVORITOS + STATUS FECHADA */
/* INICIO CSS FAVORITOS + STATUS FECHADA */
.cliente-home-store-card,
.store-page-store-card {
    position: relative;
}

.cliente-store-card-top-actions {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 76px;
    pointer-events: auto;
}

.cliente-home-store-card .cliente-favorite-btn,
.store-page-store-card .cliente-favorite-btn {
    position: relative;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8a8a8a;
    cursor: pointer;
    transition: 0.18s ease;
}

.cliente-home-store-card .cliente-favorite-btn:hover,
.store-page-store-card .cliente-favorite-btn:hover {
    transform: scale(1.03);
}

.cliente-favorite-btn .favorito-icon-solid {
    display: none;
}

.cliente-favorite-btn .favorito-icon-regular {
    display: inline-block;
}

.cliente-favorite-btn.is-active {
    color: #df1f26;
    background: #fff;
}

.cliente-favorite-btn.is-active .favorito-icon-solid {
    display: inline-block;
}

.cliente-favorite-btn.is-active .favorito-icon-regular {
    display: none;
}

.cliente-store-card-closed-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    position: relative;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
}

.cliente-home-store-card .cliente-home-store-link,
.cliente-home-store-card .cliente-home-store-link-button,
.store-page-store-card .store-page-store-link,
.store-page-store-card .cliente-home-store-link {
    display: flex;
    width: 100%;
}

@media (max-width: 640px) {
    .cliente-store-card-top-actions {
        top: 6px;
        right: 6px;
        gap: 6px;
        width: 66px;
    }

    .cliente-home-store-card .cliente-favorite-btn,
    .store-page-store-card .cliente-favorite-btn,
    .cliente-store-card-closed-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}
/* FIM CSS FAVORITOS + STATUS FECHADA */

/* WALLET RECHARGE */
/* INICIO CSS WALLET RECHARGE */
.wallet-recharge-card,
.wallet-recharge-history-card,
.wallet-recharge-pix-card {
    margin-top: 16px;
}

.wallet-recharge-subtitle {
    color: #667085;
    font-size: 13px;
    margin-top: 4px;
    line-height: 1.35;
}

.wallet-recharge-bonus-grid {
    display: none;
}

.wallet-recharge-form {
    margin-top: 14px;
}

.wallet-recharge-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 16px;
}

.wallet-recharge-quick-btn {
    border: 1px solid #e5e7eb;
    background: #f5f5f5;
    border-radius: 16px;
    min-height: 68px;
    padding: 10px 10px 9px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.18s ease;
}

.wallet-recharge-quick-btn-value {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.05;
    text-align: center;
    width: 100%;
}

.wallet-recharge-quick-btn-bonus {
    font-size: 11px;
    font-weight: 700;
    color: #e11d48;
    margin-top: 5px;
    line-height: 1.05;
    text-align: center;
    width: 100%;
}

.wallet-recharge-quick-btn.is-active {
    background: #e71d23;
    border-color: #e71d23;
}

.wallet-recharge-quick-btn.is-active .wallet-recharge-quick-btn-value,
.wallet-recharge-quick-btn.is-active .wallet-recharge-quick-btn-bonus {
    color: #fff;
}

.wallet-recharge-submit-btn {
    width: 100%;
}

.wallet-recharge-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.wallet-recharge-resume-card {
    margin-top: 16px;
}

.wallet-recharge-history-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wallet-recharge-history-item {
    border: 1px solid #eceef1;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
}

.wallet-recharge-history-main {
    min-width: 0;
}

.wallet-recharge-history-title {
    font-size: 14px;
    font-weight: 800;
    color: #1d2939;
}

.wallet-recharge-history-bonus {
    color: #e11d48;
    font-weight: 700;
    font-size: 12px;
}

.wallet-recharge-history-meta {
    font-size: 12px;
    color: #667085;
    margin-top: 4px;
}

.wallet-recharge-history-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.wallet-recharge-history-link {
    font-size: 12px;
    font-weight: 700;
    color: #e11d48;
    text-decoration: none;
}

.wallet-recharge-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: lowercase;
}

.wallet-recharge-status-pending {
    background: #fff7e6;
    color: #b26a00;
}

.wallet-recharge-status-paid {
    background: #eefaf2;
    color: #1f7a43;
}

.wallet-recharge-status-expired,
.wallet-recharge-status-failed,
.wallet-recharge-status-cancelled {
    background: #fff1f2;
    color: #be123c;
}

.wallet-recharge-amount {
    font-size: 13px;
    font-weight: 800;
}

.wallet-recharge-amount-deposit {
    color: #1f7a43;
}

.wallet-recharge-amount-withdraw {
    color: #be123c;
}

.wallet-recharge-pix-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.wallet-recharge-pix-amount {
    font-size: 24px;
    font-weight: 900;
    color: #1d2939;
    line-height: 1.1;
}

.wallet-recharge-pix-bonus {
    font-size: 13px;
    color: #e11d48;
    font-weight: 700;
    margin-top: 6px;
}

.wallet-recharge-expiration-box {
    margin-top: 16px;
    background: #f6f7f8;
    border: 1px solid #eceef1;
    border-radius: 14px;
    padding: 12px;
    font-size: 14px;
}

.wallet-recharge-qr-wrap {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.wallet-recharge-qr-image {
    width: 220px;
    max-width: 100%;
    border-radius: 18px;
    background: #fff;
    padding: 14px;
    border: 1px solid #eceef1;
}

.wallet-recharge-copy-box {
    margin-top: 16px;
}

.wallet-recharge-copy-textarea {
    width: 100%;
    min-height: 120px;
    border-radius: 14px;
    border: 1px solid #eceef1;
    background: #fff;
    padding: 12px;
    resize: none;
    font-size: 13px;
    color: #1d2939;
}

.wallet-recharge-copy-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.wallet-history-accordion-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.wallet-history-accordion-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #f5f5f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475467;
    transition: 0.18s ease;
    flex: 0 0 auto;
}

.wallet-history-accordion-toggle[aria-expanded="true"] .wallet-history-accordion-icon {
    transform: rotate(180deg);
}

.wallet-history-accordion-content {
    margin-top: 14px;
}

.wallet-history-loading,
.wallet-history-end {
    text-align: center;
    font-size: 12px;
    color: #667085;
    padding: 10px 0 2px;
}

.wallet-account-back-wrap {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.wallet-account-back-btn {
    min-width: 220px;
}

@media (max-width: 640px) {
    .wallet-recharge-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .wallet-recharge-quick-btn {
        min-height: 64px;
        padding: 9px 8px 8px;
        border-radius: 14px;
    }

    .wallet-recharge-quick-btn-value {
        font-size: 15px;
    }

    .wallet-recharge-quick-btn-bonus {
        font-size: 10px;
        margin-top: 4px;
    }

    .wallet-recharge-history-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .wallet-recharge-history-side {
        align-items: flex-start;
    }

    .wallet-recharge-pix-top {
        flex-direction: column;
    }

    .wallet-recharge-copy-actions {
        flex-direction: column;
    }

    .wallet-recharge-copy-actions .btn {
        width: 100%;
    }

    .wallet-account-back-btn {
        width: 100%;
    }
}
/* FIM CSS WALLET RECHARGE */

/* INICIO TIMELINE PEDIDO CLIENTE */

.cliente-order-timeline {
    margin-top: 14px;
}

.cliente-order-timeline-track {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.cliente-order-timeline-step {
    min-width: 58px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.45;
    position: relative;
}

.cliente-order-timeline-step.is-done,
.cliente-order-timeline-step.is-current {
    opacity: 1;
}

.cliente-order-timeline-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #d6d6d6;
    background: #f5f5f5;
    color: #7a7a7a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.cliente-order-timeline-step.is-done .cliente-order-timeline-icon,
.cliente-order-timeline-step.is-current .cliente-order-timeline-icon {
    background: #fff1f1;
    border-color: #f2b3b3;
    color: #d62828;
}

.cliente-order-timeline-label {
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
    color: #5f5f5f;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .cliente-order-timeline-step {
        min-width: 54px;
    }

    .cliente-order-timeline-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .cliente-order-timeline-label {
        font-size: 10px;
    }
}

/* FIM TIMELINE PEDIDO CLIENTE */

/* INICIO CSS CLIENTE ORDER CHAT SWITCHER */

.cliente-order-chat-switcher-section {
    margin-top: 20px;
}

.cliente-order-chat-switcher {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0 18px;
}

.cliente-order-chat-tab {
    appearance: none;
    border: 1px solid #e5e7eb;
    outline: 0;
    cursor: pointer;
    min-height: 46px;
    border-radius: 14px;
    padding: 0 12px;
    background: #ffffff;
    color: #3f3f46;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: 0.2s ease;
}

.cliente-order-chat-tab:hover {
    border-color: rgba(223, 31, 38, 0.24);
    color: #df1f26;
}

.cliente-order-chat-tab.is-active {
    background: #df1f26;
    border-color: #df1f26;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(223, 31, 38, 0.18);
}

.cliente-order-chat-tab.is-disabled,
.cliente-order-chat-tab:disabled {
    background: #f8fafc;
    color: #9ca3af;
    border: 1px dashed #d7dce3;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 1;
}

.cliente-order-chat-scopes {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cliente-order-chat-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.cliente-order-chat-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.cliente-order-chat-title {
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    color: #18181b;
}

.cliente-order-chat-subtitle {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #71717a;
}

.cliente-order-chat-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 140px;
    max-height: 340px;
    overflow-y: auto;
    padding: 16px;
    background: linear-gradient(180deg, #fcfcfd 0%, #f8fafc 100%);
    border: 1px solid #eceff3;
    border-radius: 18px;
    scrollbar-width: thin;
}

.cliente-order-chat-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.cliente-order-chat-item.is-own {
    justify-content: flex-end;
}

.cliente-order-chat-bubble {
    width: auto;
    max-width: 85%;
    padding: 12px 14px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.cliente-order-chat-item.is-own .cliente-order-chat-bubble {
    background: #fff1f2;
    border-color: rgba(223, 31, 38, 0.10);
}

.cliente-order-chat-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 11px;
    color: #71717a;
}

.cliente-order-chat-meta strong {
    font-size: 12px;
    color: #18181b;
}

.cliente-order-chat-body {
    font-size: 14px;
    line-height: 1.55;
    color: #27272a;
    word-break: break-word;
    white-space: pre-wrap;
}

.cliente-order-chat-empty {
    padding: 18px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    font-size: 13px;
    color: #71717a;
    text-align: center;
}

.cliente-order-chat-form {
    margin-top: 12px;
}

.cliente-order-chat-textarea,
.cliente-order-chat-form textarea {
    width: 100%;
    min-height: 88px;
    resize: vertical;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 14px;
    background: #ffffff;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #18181b;
    outline: none;
    box-sizing: border-box;
}

.cliente-order-chat-textarea:focus,
.cliente-order-chat-form textarea:focus {
    border-color: rgba(223, 31, 38, 0.35);
    box-shadow: 0 0 0 4px rgba(223, 31, 38, 0.08);
}

.cliente-order-chat-actions {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cliente-order-chat-help {
    display: block;
    font-size: 11px;
    line-height: 1.5;
    color: #71717a;
}

.cliente-order-chat-button,
.cliente-order-chat-actions .entregador-btn,
.cliente-order-chat-actions button[type="submit"] {
    appearance: none;
    border: 0;
    cursor: pointer;
    border-radius: 12px;
    background: #df1f26;
    color: #ffffff;
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(223, 31, 38, 0.16);
}

.cliente-order-chat-disabled {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
}

.cliente-order-chat-disabled-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #eef2f7;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cliente-order-chat-disabled-content h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
    color: #18181b;
}

.cliente-order-chat-disabled-content p {
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 1.55;
    color: #52525b;
}

.cliente-order-chat-disabled-content span {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: #94a3b8;
    font-weight: 700;
}

@media (max-width: 640px) {
    .cliente-order-chat-switcher {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cliente-order-chat-tab {
        min-height: 44px;
        justify-content: center;
        text-align: center;
    }

    .cliente-order-chat-card {
        padding: 14px;
        border-radius: 16px;
    }

    .cliente-order-chat-title {
        font-size: 16px;
    }

    .cliente-order-chat-box {
        min-height: 120px;
        max-height: 280px;
        padding: 14px;
    }

    .cliente-order-chat-bubble {
        max-width: 92%;
    }

    .cliente-order-chat-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cliente-order-chat-button,
    .cliente-order-chat-actions .entregador-btn,
    .cliente-order-chat-actions button[type="submit"] {
        width: 100%;
    }

    .cliente-order-chat-disabled {
        padding: 16px;
    }
}

/* FIM CSS CLIENTE ORDER CHAT SWITCHER */

/* INICIO CSS CLIENTE GLOBAL CHAT BUBBLE */

.cliente-global-chat-bubble {
    position: fixed;
    right: 18px;
    bottom: 92px;
    z-index: 1200;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 999px;
    background: #df1f26;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 34px rgba(223, 31, 38, 0.28);
    cursor: pointer;
    padding: 0;
}

.cliente-global-chat-bubble-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}

.cliente-global-chat-bubble-badge {
    position: absolute;
    top: -4px;
    right: -2px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 22px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(17, 24, 39, 0.18);
}

@media (max-width: 640px) {
    .cliente-global-chat-bubble {
        right: 14px;
        bottom: 86px;
        width: 56px;
        height: 56px;
    }
}

/* FIM CSS CLIENTE GLOBAL CHAT BUBBLE */

/* INICIO CSS CLIENTE CHAT INBOX */

.cliente-chat-inbox-page {
    padding-bottom: 24px;
}

.cliente-chat-inbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.cliente-chat-inbox-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.cliente-chat-inbox-card-main {
    flex: 1 1 auto;
    min-width: 0;
}

.cliente-chat-inbox-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.cliente-chat-inbox-card-order {
    font-size: 13px;
    font-weight: 800;
    color: #18181b;
}

.cliente-chat-inbox-card-badge {
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: #df1f26;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 24px;
    text-align: center;
}

.cliente-chat-inbox-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #18181b;
    line-height: 1.4;
    margin-bottom: 4px;
}

.cliente-chat-inbox-card-meta {
    font-size: 12px;
    color: #71717a;
    line-height: 1.5;
}

.cliente-chat-inbox-card-arrow {
    flex: 0 0 auto;
    color: #a1a1aa;
    font-size: 14px;
}

.cliente-chat-inbox-empty {
    margin-top: 18px;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.cliente-chat-inbox-empty-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #fff1f2;
    color: #df1f26;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}

.cliente-chat-inbox-empty h2 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    color: #18181b;
}

.cliente-chat-inbox-empty p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #71717a;
}

/* FIM CSS CLIENTE CHAT INBOX */

/* INICIO CSS CONTAINER MODAL CANCELAR PEDIDO CLIENTE */

.checkout-card-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(2px);
}

.checkout-card-modal-dialog {
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 40px);
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.checkout-card-modal-dialog form {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.checkout-card-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 20px 14px;
    border-bottom: 1px solid #eef2f7;
    flex: 0 0 auto;
}

.checkout-card-modal-head h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    text-transform: lowercase;
}

.checkout-card-modal-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    color: #111827;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.checkout-card-modal-close:hover {
    background: #e5e7eb;
    transform: scale(1.02);
}

.checkout-card-modal-body {
    padding: 18px 20px 22px;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
}

.checkout-card-modal-text {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
}

body.checkout-modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .checkout-card-modal {
        padding: 14px;
        align-items: center;
    }

    .checkout-card-modal-dialog {
        max-width: 100%;
        max-height: calc(100vh - 28px);
        border-radius: 20px;
    }

    .checkout-card-modal-head {
        padding: 18px 16px 12px;
    }

    .checkout-card-modal-body {
        padding: 16px 16px 20px;
    }

    .checkout-card-modal-head h3 {
        font-size: 20px;
    }
}

/* FIM CSS CONTAINER MODAL CANCELAR PEDIDO CLIENTE */

/* INICIO CSS TIMELINE CANCELADO */

.cliente-order-timeline-step.is-cancelled .cliente-order-timeline-icon {
    border-color: #ef4444;
    background: #fee2e2;
    color: #dc2626;
}

.cliente-order-timeline-step.is-cancelled .cliente-order-timeline-label {
    color: #dc2626;
    font-weight: 700;
}


.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-step.is-done:not(.is-cancelled) .cliente-order-timeline-icon,
.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-step.is-current:not(.is-cancelled) .cliente-order-timeline-icon {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #9ca3af;
}

.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-step.is-done:not(.is-cancelled) .cliente-order-timeline-label,
.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-step.is-current:not(.is-cancelled) .cliente-order-timeline-label {
    color: #9ca3af;
    font-weight: 500;
}

.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-step.is-cancelled .cliente-order-timeline-icon {
    background: #fee2e2;
    border-color: #ef4444;
    color: #dc2626;
}

.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-step.is-cancelled .cliente-order-timeline-label {
    color: #dc2626;
    font-weight: 700;
}

/* INICIO CSS TIMELINE STATUS ESPECIAIS */

.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-step,
.cliente-order-timeline.is-payment-failed-order .cliente-order-timeline-step,
.cliente-order-timeline.is-delivered-order .cliente-order-timeline-step {
    min-width: 0;
}

.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-label,
.cliente-order-timeline.is-payment-failed-order .cliente-order-timeline-label,
.cliente-order-timeline.is-delivered-order .cliente-order-timeline-label {
    white-space: normal;
    word-break: break-word;
    text-align: center;
    line-height: 1.2;
    max-width: 88px;
    margin: 0 auto;
}

/* CANCELADO */

.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-step .cliente-order-timeline-icon {
    background: #f3f4f6 !important;
    border-color: #d1d5db !important;
    color: #9ca3af !important;
}

.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-step .cliente-order-timeline-label {
    color: #9ca3af !important;
    font-weight: 500 !important;
}

.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-step.is-cancelled .cliente-order-timeline-icon {
    border-color: #ef4444 !important;
    background: #fee2e2 !important;
    color: #dc2626 !important;
}

.cliente-order-timeline.is-cancelled-order .cliente-order-timeline-step.is-cancelled .cliente-order-timeline-label {
    color: #dc2626 !important;
    font-weight: 700 !important;
}

/* PAGAMENTO NÃO REALIZADO */

.cliente-order-timeline.is-payment-failed-order .cliente-order-timeline-step .cliente-order-timeline-icon {
    background: #f3f4f6 !important;
    border-color: #d1d5db !important;
    color: #9ca3af !important;
}

.cliente-order-timeline.is-payment-failed-order .cliente-order-timeline-step .cliente-order-timeline-label {
    color: #9ca3af !important;
    font-weight: 500 !important;
}

.cliente-order-timeline.is-payment-failed-order .cliente-order-timeline-step.is-payment-failed .cliente-order-timeline-icon {
    border-color: #9ca3af !important;
    background: #e5e7eb !important;
    color: #6b7280 !important;
}

.cliente-order-timeline.is-payment-failed-order .cliente-order-timeline-step.is-payment-failed .cliente-order-timeline-label {
    color: #6b7280 !important;
    font-weight: 700 !important;
}

/* ENTREGUE */

.cliente-order-timeline.is-delivered-order .cliente-order-timeline-step.is-done .cliente-order-timeline-icon,
.cliente-order-timeline.is-delivered-order .cliente-order-timeline-step.is-current .cliente-order-timeline-icon {
    border-color: #3b82f6 !important;
    background: #dbeafe !important;
    color: #2563eb !important;
}

.cliente-order-timeline.is-delivered-order .cliente-order-timeline-step.is-done .cliente-order-timeline-label,
.cliente-order-timeline.is-delivered-order .cliente-order-timeline-step.is-current .cliente-order-timeline-label {
    color: #2563eb !important;
    font-weight: 700 !important;
}

/* FIM CSS TIMELINE STATUS ESPECIAIS */

/* FIM CSS TIMELINE CANCELADO */

/* PEDIDO - AVALIACAO E EXTRA */
/* INICIO CSS PEDIDO - AVALIACAO E EXTRA */
.cliente-feedback-card {
    border: 1px solid #efefef;
}

.cliente-feedback-subtitle {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.cliente-feedback-group {
    margin-top: 14px;
}

.cliente-rating-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.cliente-rating-star {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
    line-height: 1;
    color: #c9c9cc;
    font-size: 24px;
    cursor: pointer;
    box-shadow: none;
}

.cliente-rating-star i {
    display: block;
    line-height: 1;
}

.cliente-rating-star:hover {
    color: #e0a800;
}

.cliente-rating-star.is-active {
    background: transparent;
    color: #facc00;
    box-shadow: none;
}

.cliente-feedback-textarea {
    min-height: 92px;
    height: auto;
    padding: 14px 16px;
    resize: vertical;
}

.cliente-feedback-delivery-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 10px;
    padding: 10px 12px;
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #fafafa;
}

.cliente-feedback-delivery-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    overflow: hidden;
    background: #fff2f2;
    color: #df1f26;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.cliente-feedback-delivery-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cliente-feedback-delivery-texts {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cliente-feedback-delivery-texts strong {
    font-size: 14px;
    line-height: 1.2;
    color: #222;
}

.cliente-feedback-delivery-texts span {
    font-size: 12px;
    line-height: 1.35;
    color: #666;
    font-weight: 700;
}

.cliente-feedback-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.cliente-feedback-summary {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cliente-feedback-summary-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cliente-feedback-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    line-height: 1.35;
    color: #444;
    font-weight: 700;
}

.cliente-feedback-summary-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cliente-feedback-comment-wrap {
    position: relative;
}

.cliente-feedback-comment {
    margin: 0;
    padding: 12px 42px 12px 12px;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid #efefef;
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
    min-height: 46px;
}

.cliente-feedback-comment.is-empty {
    color: #888;
    font-style: italic;
}

.cliente-feedback-comment-edit {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #fff1f2;
    color: #df1f26;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
    transition: 0.2s ease;
}

.cliente-feedback-comment-edit:hover {
    opacity: 0.92;
    transform: scale(1.03);
}

.cliente-extra-box {
    margin-top: 18px;
    border-top: 1px dashed #ececec;
    padding-top: 18px;
}

.cliente-extra-box__head h4 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
}

.cliente-extra-box__head p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
}

.cliente-extra-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.cliente-extra-option {
    display: block;
    cursor: pointer;
}

.cliente-extra-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cliente-extra-option span {
    min-height: 38px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 6px;
    font-size: 13px;
    font-weight: 800;
    color: #222;
    transition: 0.2s ease;
    white-space: nowrap;
    text-align: center;
}

.cliente-extra-option input:checked + span {
    border-color: #df1f26;
    background: #fff8f8;
    box-shadow: 0 0 0 2px rgba(223, 31, 38, 0.08);
    color: #df1f26;
}

@media (max-width: 640px) {
    .cliente-rating-star {
        font-size: 22px;
    }

    .cliente-feedback-actions .btn {
        width: 100%;
    }

    .cliente-feedback-comment {
        font-size: 12px;
        padding: 11px 40px 11px 11px;
    }

    .cliente-feedback-comment-edit {
        top: 9px;
        right: 9px;
    }

    .cliente-extra-options {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }

    .cliente-extra-option span {
        min-height: 36px;
        padding: 0 4px;
        font-size: 12px;
        border-radius: 10px;
    }
}
/* FIM CSS PEDIDO - AVALIACAO E EXTRA */
