:root {
    --orange: #d94608;
    --orange-dark: #ad3100;
    --yellow: #ffbd25;
    --cream: #fff8eb;
    --brown: #3d2015;
    --muted: #806e60;
    --line: #ebdfd0;
    --green: #21824c;
    --radius: 20px;
    --shadow: 0 10px 35px #4a250b0b;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: #fffcf7;
    color: var(--brown);
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 15px;
    line-height: 1.5;
}
button,
input,
select,
textarea {
    font: inherit;
}
button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}
button,
a {
    touch-action: manipulation;
}
button,
.button {
    border: 0;
    border-radius: 12px;
    padding: 13px 20px;
    background: var(--orange);
    color: #fff;
    font-weight: 750;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    min-height: 44px;
}
button:hover,
.button:hover {
    background: var(--orange-dark);
}
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.ghost {
    background: transparent;
    color: var(--brown);
}
.ghost:hover {
    background: #f5ebdc;
}
.secondary {
    background: #fff3d4;
    color: var(--brown);
    border: 1px solid #f0d58e;
}
.secondary:hover {
    background: #ffe7a8;
}
.danger {
    color: #ad281b;
    background: #fff0ed;
}
.text-link,
a {
    color: var(--orange);
}
a:hover {
    text-decoration: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid #235aa0;
    outline-offset: 3px;
}
h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}
h1 {
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -1.3px;
}
h2 {
    font-size: 25px;
    line-height: 1.25;
    letter-spacing: -0.6px;
}
h3 {
    font-size: 18px;
    line-height: 1.3;
}
small,
.muted {
    color: var(--muted);
}
label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 650;
    margin: 12px 0;
}
input,
select,
textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    background: white;
    border-radius: 10px;
    padding: 12px;
    color: var(--brown);
}
textarea {
    min-height: 85px;
    resize: vertical;
}
input[type="checkbox"],
input[type="radio"] {
    width: 19px;
    height: 19px;
    min-height: 19px;
    accent-color: var(--orange);
    padding: 0;
    flex-shrink: 0;
}
.check {
    display: flex;
    align-items: center;
    gap: 10px;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.full {
    grid-column: 1/-1;
}
.eyebrow {
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 12px;
}
.site-header {
    background: #fffcf7ed;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
}
.header-inner {
    max-width: 1380px;
    margin: auto;
    padding: 13px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--brown);
    flex-shrink: 0;
}
.brand img {
    width: 66px;
    height: 66px;
    object-fit: cover;
    border-radius: 50%;
}
.brand b {
    font-size: 27px;
    letter-spacing: -1.5px;
}
.brand b span {
    color: var(--orange);
}
.brand small {
    display: block;
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 1.7px;
}
.address-button {
    padding: 8px 15px;
    gap: 10px;
    text-align: left;
    border-left: 1px solid var(--line);
    border-radius: 0;
    max-width: 310px;
}
.address-button small {
    display: block;
    font-size: 9px;
    letter-spacing: 1.5px;
}
.address-button strong {
    font-size: 12px;
    font-weight: 650;
}
.pin {
    font-size: 25px;
    color: var(--orange);
}
.desktop-nav {
    display: flex;
    gap: 2px;
    margin-left: auto;
    white-space: nowrap;
}
.desktop-nav button {
    font-size: 13px;
    padding: 10px;
}
.cart-header {
    font-size: 13px;
    background: var(--yellow);
    color: var(--brown);
    white-space: nowrap;
    padding: 13px 16px;
}
.cart-header:hover {
    background: #f3ad10;
}
.cart-header b {
    border-radius: 7px;
    background: var(--brown);
    color: #fff;
    padding: 2px 7px;
    font-size: 11px;
}
.container {
    max-width: 1320px;
    padding: 27px 30px 60px;
    margin: auto;
    min-height: 65vh;
}
.store-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    margin-bottom: 19px;
}
.store-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}
.store-badge {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    background: #eaf5eb;
    color: #256b3f;
    border-radius: 30px;
    padding: 5px 11px;
    font-weight: 700;
    font-size: 11px;
}
.store-badge:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.store-badge.closed {
    background: #f7eade;
    color: #79523b;
}
.hero {
    width: 100%;
    aspect-ratio: 3/1;
    object-fit: cover;
    border-radius: 23px;
    display: block;
}
.hero-wrap {
    position: relative;
}
.hero-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    display: flex;
    gap: 5px;
}
.hero-dots i {
    height: 5px;
    width: 5px;
    border-radius: 10px;
    background: #fff9;
}
.hero-dots i:first-child {
    width: 20px;
    background: white;
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin: 28px 0 19px;
}
.section-head h2 {
    margin: 0;
}
.section-head p {
    margin: 6px 0 0;
    font-size: 13px;
}
.search {
    position: relative;
    max-width: 390px;
    width: 100%;
}
.search input {
    padding: 13px 16px 13px 43px;
    background: white;
}
.search:before {
    content: "⌕";
    position: absolute;
    left: 16px;
    top: 6px;
    color: var(--muted);
    font-size: 26px;
}
.categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 13px;
    margin: 25px 0 30px;
}
.category {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--brown);
    padding: 12px 14px;
    justify-content: flex-start;
    gap: 12px;
    min-width: 0;
    border-radius: 15px;
}
.category:hover,
.category.active {
    background: #fff4d8;
    border-color: #e7b33d;
    box-shadow: 0 3px 0 #ffd872;
}
.category span {
    font-size: 12px;
    line-height: 1.3;
    text-align: left;
}
.category-icon {
    width: 65px;
    height: 65px;
    background-image: url("../images/categorias.webp");
    background-repeat: no-repeat;
    background-size: 500% auto;
    background-position-y: 35%;
    flex-shrink: 0;
}
.catalog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 19px;
}
.product-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 17px;
    overflow: hidden;
    position: relative;
    transition:
        transform 0.18s,
        box-shadow 0.18s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.product-image {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    display: block;
    cursor: pointer;
}
.product-image-placeholder {
    aspect-ratio: 1.35;
    display: grid;
    place-items: center;
    background: #fff0c7;
    font-size: 42px;
}
.product-card .card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card h3 {
    font-size: 15px;
    margin: 0 0 6px;
}
.product-card p {
    font-size: 11px;
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.product-price {
    font-size: 19px;
    color: var(--orange);
    font-weight: 850;
    letter-spacing: -0.7px;
}
.old-price {
    font-size: 11px;
    color: var(--muted);
    text-decoration: line-through;
    display: block;
    font-weight: 400;
    letter-spacing: 0;
}
.from {
    display: block;
    font-size: 9px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0;
}
.add-small {
    width: 35px;
    height: 35px;
    min-height: 35px;
    border-radius: 11px;
    padding: 0;
    font-size: 22px;
}
.favorite {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    min-height: 32px;
    background: #fffcf7ec;
    color: var(--orange);
    padding: 0;
    font-size: 23px;
    font-weight: 400;
}
.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 9px;
    font-weight: 800;
    background: #fff4d4;
    padding: 4px 8px;
    border-radius: 6px;
    color: #8b4505;
}
.cart-panel {
    position: sticky;
    top: 115px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 19px;
    padding: 23px;
    box-shadow: var(--shadow);
}
.cart-panel h3 {
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--line);
}
.cart-empty {
    text-align: center;
    padding: 23px 0;
}
.cart-empty .bag {
    font-size: 43px;
    display: block;
    color: #c2996b;
    margin: 5px 0 15px;
}
.cart-empty b {
    font-size: 13px;
}
.cart-empty p {
    font-size: 12px;
    margin: 8px 0 0;
}
.cart-footnote {
    background: #fff8e8;
    border-radius: 11px;
    padding: 12px;
    font-size: 10px;
    color: #8b6745;
    margin-top: 22px;
}
.cart-panel .button,
.cart-panel > button {
    width: 100%;
    margin-top: 15px;
}
.cart-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    font-size: 12px;
}
.cart-line > div {
    flex: 1;
}
.cart-line img {
    width: 49px;
    height: 49px;
    object-fit: cover;
    border-radius: 9px;
}
.cart-line small {
    display: block;
}
.cart-line .ghost {
    padding: 0 6px;
    min-height: 26px;
    font-size: 12px;
}
.total-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    margin: 10px 0;
}
.total-line.grand {
    border-top: 1px dashed var(--line);
    padding-top: 14px;
    font-size: 19px;
    font-weight: 800;
}
.story-banner {
    width: 100%;
    border-radius: 18px;
    margin-top: 25px;
    display: block;
}
.loyalty-banner {
    padding: 22px;
    border: 1px solid #ebd094;
    background: #fff6dd;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 25px;
}
.loyalty-banner > span {
    font-size: 30px;
}
.loyalty-banner h3 {
    font-size: 15px;
    margin: 0 0 4px;
}
.loyalty-banner p {
    font-size: 12px;
    margin: 0;
}
.loyalty-banner button {
    margin-left: auto;
    white-space: nowrap;
    font-size: 12px;
}
.site-footer {
    max-width: 1260px;
    margin: 0 auto;
    padding: 30px 0 35px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    color: var(--muted);
}
.site-footer b {
    font-size: 22px;
    color: var(--brown);
}
.site-footer p {
    margin: 4px 0;
}
.bottom-nav {
    display: none;
}
.loading {
    padding: 80px;
    text-align: center;
}
.notice {
    padding: 14px 17px;
    border-radius: 12px;
    background: #fff1cf;
    color: #6e450f;
    font-size: 13px;
    margin: 15px 0;
}
.notice.error {
    background: #ffebe7;
    color: #a82e1a;
}
.toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    background: var(--brown);
    color: white;
    box-shadow: var(--shadow);
    padding: 14px 22px;
    border-radius: 13px;
    z-index: 100;
    max-width: 90%;
    font-size: 13px;
}
.toast[hidden] {
    display: none;
}
dialog {
    border: 0;
    border-radius: 24px;
    padding: 0;
    max-width: 730px;
    width: calc(100% - 40px);
    max-height: 92dvh;
    box-shadow: 0 25px 100px #28110945;
    color: var(--brown);
    background: #fffcf7;
}
dialog::backdrop {
    background: #23130980;
    backdrop-filter: blur(5px);
}
.modal-close {
    position: sticky;
    top: 12px;
    margin: 12px 12px -55px auto;
    display: flex;
    z-index: 5;
    width: 38px;
    height: 38px;
    min-height: 38px;
    background: #fffef4ee;
    border-radius: 50%;
    font-size: 25px;
    padding: 0;
}
.modal-body {
    padding: 30px;
}
.modal-hero {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
.modal-body h2 {
    font-size: 26px;
    margin-bottom: 10px;
}
.modal-body > p {
    font-size: 13px;
}
.wizard-steps {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    margin: 25px 0 22px;
    overflow: auto;
}
.wizard-steps button {
    flex-direction: column;
    background: transparent;
    color: var(--muted);
    font-size: 9px;
    padding: 0;
    min-width: 51px;
    gap: 7px;
    font-weight: 600;
}
.wizard-steps b {
    border: 1px solid var(--line);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: white;
}
.wizard-steps .current {
    color: var(--orange);
}
.wizard-steps .current b {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}
.option-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 13px;
    margin: 8px 0;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
}
.option-row:has(input:checked) {
    border-color: var(--orange);
    background: #fff2dd;
}
.option-row span {
    flex: 1;
}
.option-row em {
    font-style: normal;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
}
.wizard-footer {
    position: sticky;
    bottom: 0;
    background: #fffcf7;
    padding: 18px 28px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 4;
}
.wizard-footer b {
    font-size: 24px;
    line-height: 1.2;
    color: var(--orange);
}
.wizard-footer small {
    display: block;
    font-size: 10px;
}
.quantity {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
}
.quantity button {
    background: transparent;
    color: var(--brown);
    padding: 5px 11px;
    min-height: 34px;
}
.page-title {
    margin: 20px 0 25px;
}
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 30px;
    align-items: start;
    max-width: 1100px;
    margin: auto;
}
.panel {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 18px;
}
.checkout-item {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}
.checkout-item:first-child {
    padding-top: 0;
}
.checkout-item img {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 12px;
}
.checkout-item .item-info {
    flex: 1;
    min-width: 0;
}
.checkout-item h3 {
    margin-bottom: 6px;
    font-size: 15px;
}
.checkout-item p {
    font-size: 11px;
    margin-bottom: 9px;
    color: var(--muted);
}
.inline-form {
    display: flex;
    gap: 10px;
}
.inline-form button {
    padding: 10px 15px;
}
.checkout-summary {
    position: sticky;
    top: 115px;
}
.account-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 25px;
}
.account-nav button {
    width: 100%;
    justify-content: flex-start;
    font-size: 13px;
    background: transparent;
    color: var(--brown);
    margin: 3px 0;
}
.account-nav button.active {
    background: #fff0cf;
    color: var(--orange);
}
.order-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}
.order-row p {
    font-size: 12px;
    margin: 6px 0;
}
.order-row button {
    font-size: 12px;
    padding: 10px 13px;
}
.status-badge {
    font-size: 10px;
    background: #fff0ca;
    color: #995309;
    padding: 5px 9px;
    border-radius: 20px;
    display: inline-block;
}
.status-badge.ENTREGUE {
    background: #e2f6e9;
    color: #246d40;
}
.status-badge.CANCELADO {
    background: #ffe4e0;
    color: #a52e20;
}
.tracking {
    max-width: 780px;
    margin: auto;
}
.tracking-heading {
    background: var(--brown);
    border-radius: 20px;
    color: #fff;
    padding: 30px;
}
.tracking-heading p {
    color: #e1ccbb;
    margin: 8px 0 0;
    font-size: 13px;
}
.timeline {
    margin: 25px 0;
}
.timeline-item {
    padding: 0 0 28px 48px;
    position: relative;
}
.timeline-item:before {
    content: "";
    position: absolute;
    left: 14px;
    top: 22px;
    width: 2px;
    height: 100%;
    background: #e9e4de;
}
.timeline-item:last-child:before {
    display: none;
}
.timeline-item i {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ede8e1;
    color: #817568;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-style: normal;
}
.timeline-item.done i {
    background: var(--green);
    color: white;
}
.timeline-item.done:before {
    background: var(--green);
}
.timeline-item p {
    font-size: 12px;
    margin: 4px 0;
}
.timeline-item strong {
    font-size: 14px;
}
.setup {
    background: #fff4d9;
    padding: 40px 20px;
}
.setup-card {
    max-width: 630px;
    margin: auto;
    background: #fffdf8;
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow);
}
.setup-logo {
    width: 90px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 25px;
}
.setup-card h1 {
    font-size: 29px;
}
.setup-card progress {
    width: 100%;
    accent-color: var(--orange);
}
.setup-card form > button {
    width: 100%;
    margin-top: 18px;
}
.setup-card .text-link {
    display: block;
    margin-top: 18px;
    text-align: center;
}
.mobile-cart-float {
    display: none;
}
.form-error {
    color: #a32a19;
    background: #ffede6;
    padding: 12px;
    border-radius: 9px;
    font-size: 13px;
}
.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.auth-tabs button {
    flex: 1;
}
.tab-active {
    background: var(--brown);
}
.empty-state {
    text-align: center;
    padding: 45px 20px;
    background: #fff9ed;
    border-radius: 16px;
}
.empty-state h3 {
    margin: 0 0 8px;
}
.empty-state p {
    font-size: 13px;
}
.badge-points {
    font-size: 44px;
    font-weight: 850;
    letter-spacing: -2px;
    color: var(--orange);
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.preview-note {
    padding: 10px;
    background: #3d2015;
    color: white;
    font-size: 12px;
    text-align: center;
}
.table-wrap {
    overflow: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}
td,
th {
    text-align: left;
    border-bottom: 1px solid var(--line);
    padding: 12px 10px;
    vertical-align: top;
}
th {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
}
@media (min-width: 1600px) {
    .header-inner {
        max-width: 1510px;
    }
    .container {
        max-width: 1450px;
    }
    .catalog-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
    }
    .site-footer {
        max-width: 1390px;
    }
    .product-image {
        aspect-ratio: 1.55;
    }
}
@media (max-width: 1100px) {
    .header-inner {
        gap: 12px;
        padding: 12px 24px;
    }
    .brand > span {
        display: none;
    }
    .desktop-nav {
        gap: 0;
    }
    .category {
        flex-direction: column;
        padding: 8px;
        gap: 0;
    }
    .category span {
        text-align: center;
        font-size: 11px;
    }
    .catalog-layout {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 18px;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cart-panel {
        padding: 18px;
    }
    .site-footer {
        margin: 0 30px;
    }
    .checkout-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
    }
}
@media (max-width: 800px) {
    .catalog-layout {
        display: block;
    }
    .cart-panel {
        display: none;
    }
    .desktop-nav {
        display: none;
    }
    .header-inner {
        gap: 12px;
    }
    .cart-header {
        margin-left: auto;
    }
    .container {
        padding: 20px;
    }
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .checkout-summary {
        position: static;
    }
    .account-layout {
        grid-template-columns: 1fr;
    }
    .account-nav {
        display: flex;
        overflow: auto;
        padding: 8px;
        gap: 3px;
    }
    .account-nav button {
        white-space: nowrap;
        width: auto;
    }
    .mobile-cart-float {
        display: flex;
        position: fixed;
        bottom: 83px;
        left: 20px;
        right: 20px;
        z-index: 18;
        box-shadow: 0 6px 22px #a3330644;
        justify-content: space-between;
    }
    .site-footer {
        padding-bottom: 150px;
    }
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fffefbf7;
        border-top: 1px solid var(--line);
        z-index: 25;
        justify-content: space-around;
        padding: 5px 10px max(6px, env(safe-area-inset-bottom));
        backdrop-filter: blur(10px);
    }
    .bottom-nav button {
        background: transparent;
        color: var(--muted);
        font-size: 10px;
        font-weight: 600;
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 3px 15px;
        min-width: 65px;
    }
    .bottom-nav .active {
        color: var(--orange);
    }
    .nav-icon {
        display: block;
        width: 30px;
        height: 30px;
        background-image: url("../images/navegacao.webp");
        background-size: 400% auto;
        background-position-y: 40%;
        background-repeat: no-repeat;
    }
    .nav-home {
        background-position-x: 0;
    }
    .nav-orders {
        background-position-x: 33.333%;
    }
    .nav-favorites {
        background-position-x: 66.666%;
    }
    .nav-account {
        background-position-x: 100%;
    }
    .toast {
        bottom: 145px;
    }
    .store-meta {
        gap: 13px;
    }
    .store-strip > span {
        display: none;
    }
    .hero {
        border-radius: 17px;
    }
    .loyalty-banner button {
        font-size: 10px;
    }
    .site-footer {
        flex-wrap: wrap;
    }
}
@media (max-width: 540px) {
    body {
        font-size: 14px;
    }
    .header-inner {
        padding: 8px 16px;
        gap: 8px;
    }
    .brand img {
        width: 49px;
        height: 49px;
    }
    .address-button {
        border: 0;
        padding: 3px 6px;
        max-width: 220px;
        gap: 5px;
    }
    .address-button small {
        font-size: 8px;
    }
    .address-button strong {
        font-size: 10px;
        display: block;
        max-width: 170px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .pin {
        font-size: 19px;
    }
    .desktop-only {
        display: none;
    }
    .cart-header {
        padding: 9px;
        min-height: 38px;
        font-size: 14px;
    }
    .container {
        padding: 16px 16px 35px;
    }
    .store-strip {
        font-size: 10px;
        margin-bottom: 14px;
    }
    .store-meta {
        gap: 10px;
    }
    .store-badge {
        font-size: 9px;
        padding: 4px 8px;
    }
    .hero {
        aspect-ratio: 2.55;
        object-fit: cover;
        object-position: center;
        border-radius: 14px;
    }
    .hero-dots {
        bottom: 7px;
    }
    .categories {
        gap: 5px;
        margin: 17px 0 23px;
    }
    .category {
        padding: 5px 2px;
        background: transparent;
        border: 1px solid transparent;
        border-radius: 11px;
        gap: 5px;
    }
    .category-icon {
        width: 57px;
        height: 48px;
        background-position-y: 20%;
    }
    .category span {
        font-size: 9px;
        line-height: 1.3;
        max-width: 68px;
    }
    .category.active {
        box-shadow: none;
    }
    .section-head {
        display: block;
        margin: 21px 0 16px;
    }
    .section-head h2 {
        font-size: 22px;
    }
    .section-head p {
        font-size: 11px;
    }
    .section-head .search {
        max-width: none;
        margin-bottom: 21px;
    }
    .section-head.top {
        display: flex;
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 0;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .product-card {
        border-radius: 13px;
    }
    .product-card .card-body {
        padding: 12px;
    }
    .product-card h3 {
        font-size: 13px;
    }
    .product-card p {
        font-size: 10px;
        margin-bottom: 10px;
    }
    .product-price {
        font-size: 18px;
    }
    .tag {
        font-size: 8px;
        left: 8px;
        top: 8px;
    }
    .favorite {
        width: 28px;
        height: 28px;
        min-height: 28px;
        font-size: 20px;
        right: 8px;
        top: 8px;
    }
    .add-small {
        width: 30px;
        height: 30px;
        min-height: 30px;
        font-size: 20px;
    }
    .old-price {
        font-size: 10px;
    }
    .loyalty-banner {
        padding: 17px;
        gap: 12px;
        align-items: flex-start;
    }
    .loyalty-banner > span {
        font-size: 25px;
    }
    .loyalty-banner h3 {
        font-size: 14px;
    }
    .loyalty-banner p {
        font-size: 11px;
    }
    .loyalty-banner button {
        display: none;
    }
    .story-banner {
        margin-top: 20px;
        border-radius: 12px;
    }
    .site-footer {
        margin: 0 16px;
        padding-top: 22px;
    }
    .site-footer b {
        font-size: 18px;
    }
    dialog {
        width: 100%;
        max-width: none;
        max-height: 96dvh;
        margin: auto 0 0;
        border-radius: 22px 22px 0 0;
    }
    .modal-body {
        padding: 23px 20px;
    }
    .modal-hero {
        height: 190px;
    }
    .modal-body h2 {
        font-size: 24px;
    }
    .wizard-footer {
        padding: 14px 20px;
        gap: 9px;
    }
    .wizard-footer b {
        font-size: 20px;
    }
    .wizard-footer button {
        font-size: 12px;
        padding: 13px 14px;
    }
    .wizard-steps button {
        min-width: 44px;
        font-size: 8px;
    }
    .panel {
        padding: 19px;
        border-radius: 14px;
    }
    .grid-2 {
        gap: 10px;
    }
    .checkout-item img {
        width: 65px;
        height: 65px;
    }
    .checkout-item {
        gap: 10px;
    }
    .checkout-item h3 {
        font-size: 13px;
    }
    .page-title h1 {
        font-size: 28px;
    }
    .order-row {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .tracking-heading {
        padding: 23px;
    }
    .tracking-heading h1 {
        font-size: 29px;
    }
    .setup-card {
        padding: 23px;
    }
    .setup {
        padding: 20px 12px;
    }
    .bottom-nav button {
        padding: 3px 12px;
    }
    .mobile-cart-float {
        left: 16px;
        right: 16px;
        font-size: 12px;
    }
    .quantity {
        gap: 9px;
    }
    .empty-state {
        padding: 30px 15px;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

[hidden] {
    display: none !important;
}
.category-icon {
    height: 51px;
    background-position-y: -15px;
}
.nav-icon {
    height: 24px;
    background-position-y: -5px;
}
@media (max-width: 540px) {
    .hero {
        aspect-ratio: 3/1;
        object-fit: contain;
    }
    .category-icon {
        height: 45px;
        background-position-y: -13px;
    }
}

.category-art {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3d4;
}
.category-art .category-icon {
    width: 140px;
    height: 110px;
    background-position-y: -30px;
}
.modal-hero.category-art .category-icon {
    width: 190px;
    height: 150px;
    background-position-y: -40px;
}
.catalog-filters {
    display: flex;
    gap: 7px;
    overflow: auto;
    margin: 0 0 20px;
    padding-bottom: 4px;
}
.catalog-filters button {
    min-height: 32px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 650;
    padding: 7px 12px;
    border-radius: 30px;
    color: #806e60;
    background: #f7efe3;
}
.catalog-filters button.selected {
    background: #3d2015;
    color: #fff;
}
@media (max-width: 540px) {
    .catalog-filters {
        gap: 6px;
        margin-top: 5px;
        margin-bottom: 17px;
    }
    .catalog-filters button {
        font-size: 10px;
        padding: 7px 10px;
    }
}
