.interface-mode-simple {
    --simple-ink: #202020;
    --simple-yellow: #ffc757;
    --simple-soft: #f5f5f3;
    --simple-line: #deded9;
    background: #fff;
}

body.interface-mode-simple {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
}

.simple-store-header {
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 1px solid var(--simple-line);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
}

.simple-header-inner { display: flex; width: min(1280px, 100%); min-height: 76px; align-items: center; justify-content: space-between; gap: 28px; margin: 0 auto; padding: 10px 24px; }
.simple-header-logo { display: inline-flex; align-items: center; }
.simple-header-logo img { width: auto; height: 38px; }
.simple-header-nav { display: flex; justify-content: flex-end; gap: 8px; }
.simple-header-nav a { position: relative; display: flex; min-height: 44px; align-items: center; gap: 8px; padding: 0 12px; border-radius: 12px; color: var(--simple-ink); font-size: .9rem; }
.simple-header-nav a:hover { background: var(--simple-soft); }
.simple-header-nav i { font-size: 1rem; }
.simple-header-nav b { position: absolute; top: 0; left: 27px; display: grid; min-width: 18px; height: 18px; place-items: center; padding: 0 4px; border: 2px solid white; border-radius: 99px; background: var(--simple-yellow); font-size: .65rem; }
.simple-header-nav .simple-company-link { padding: 0 14px; background: var(--simple-yellow); font-weight: 600; }
.simple-header-nav .simple-company-link:hover { background: #ffd57c; }
.simple-account-menu { position: relative; display: flex; }
.simple-account-trigger { display: flex; min-height: 44px; align-items: center; gap: 8px; padding: 3px 10px 3px 4px; border: 1px solid var(--simple-line); border-radius: 14px; background: #fff; color: var(--simple-ink); font: 500 .9rem "Oswald", sans-serif; cursor: pointer; transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.simple-account-trigger:hover, .simple-account-menu.open .simple-account-trigger { border-color: #c99a37; background: #fffaf0; box-shadow: 0 5px 14px rgba(0,0,0,.07); }
.simple-account-trigger:focus-visible { outline: 3px solid var(--simple-yellow); outline-offset: 2px; }
.simple-header-avatar { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; overflow: hidden; border-radius: 50%; background: var(--simple-yellow); color: var(--simple-ink); }
.simple-header-avatar i { font-size: .95rem; }
.simple-header-avatar-image { width: 100%; height: 100%; object-fit: cover; }
.simple-account-label { color: var(--simple-ink); }
.simple-account-chevron { color: #7b7b76; font-size: .68rem !important; transition: transform .2s ease; }
.simple-account-menu.open .simple-account-chevron { transform: rotate(180deg); }
.simple-account-dropdown { position: absolute; z-index: 110; top: calc(100% + 10px); right: 0; display: grid; width: 264px; padding: 8px; border: 1px solid var(--simple-line); border-radius: 14px; background: #fff; box-shadow: 0 18px 42px rgba(0,0,0,.15); opacity: 0; pointer-events: none; transform: translateY(-6px); visibility: hidden; transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.simple-account-menu.open .simple-account-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.simple-header-nav .simple-account-dropdown a { display: grid; min-height: 44px; grid-template-columns: 30px minmax(0, 1fr); align-items: center; gap: 10px; padding: 0 10px; border-radius: 9px; color: var(--simple-ink); font-size: .88rem; }
.simple-header-nav .simple-account-dropdown a:hover { background: var(--simple-soft); }
.simple-header-nav .simple-account-dropdown a i { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 8px; background: var(--simple-soft); color: #656560; font-size: .83rem; }
.simple-header-nav .simple-account-dropdown a span { display: inline; color: inherit; }
.simple-header-nav .simple-account-dropdown .simple-account-backoffice { background: #fff8e7; }
.simple-header-nav .simple-account-dropdown .simple-account-backoffice i { background: var(--simple-yellow); color: var(--simple-ink); }
.simple-header-nav .simple-account-dropdown .simple-account-logout { margin-top: 5px; border-top: 1px solid var(--simple-line); border-radius: 0 0 9px 9px; color: #a33131; }
.simple-header-nav .simple-account-dropdown .simple-account-logout i { color: #a33131; background: #fff1f1; }

.simple-products-main { width: min(1280px, 100%); margin: 0 auto; padding: 24px 24px 68px; }
.simple-mobile-search { display: flex; width: 100%; height: 58px; align-items: center; gap: 13px; margin-bottom: 20px; padding-left: 20px; overflow: hidden; border: 1px solid var(--simple-line); border-radius: 16px; background: var(--simple-soft); box-shadow: 0 5px 16px rgba(0,0,0,.035); }
.simple-mobile-search:focus-within { border-color: var(--simple-ink); box-shadow: 0 0 0 3px rgba(255,199,87,.38); }
.simple-mobile-search > i { color: var(--text-grey); font-size: 1rem; }
.simple-mobile-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--simple-ink); font: 400 16px "Oswald", sans-serif; }
.simple-mobile-search button { display: grid; width: 60px; height: 58px; flex: 0 0 auto; place-items: center; border: 0; background: var(--simple-ink); cursor: pointer; }
.simple-mobile-search button i { color: var(--simple-yellow); }

.simple-discovery { display: block; margin-bottom: 28px; }
.simple-discovery.is-filtered { display: block; }
.simple-hero { position: relative; min-width: 0; margin-bottom: 20px; }
.simple-hero-track { display: flex; overflow-x: auto; border-radius: 22px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.simple-hero-track::-webkit-scrollbar { display: none; }
.simple-hero-slide { display: block; min-width: 100%; aspect-ratio: 2.5 / 1; overflow: hidden; background: var(--simple-soft); scroll-snap-align: start; }
.simple-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.simple-hero-dots { position: absolute; right: 0; bottom: 12px; left: 0; display: flex; justify-content: center; gap: 7px; pointer-events: none; }
.simple-hero-dots button { width: 8px; height: 8px; min-height: 8px; padding: 0; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(32,32,32,.45); pointer-events: auto; cursor: pointer; }
.simple-hero-dots button.active { width: 24px; border-radius: 99px; background: var(--simple-yellow); }
.simple-hero-fallback { display: flex; min-height: 300px; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 20px; padding: 34px; overflow: hidden; border-radius: 22px; background: radial-gradient(circle at 86% 18%, rgba(255,199,87,.4), transparent 18%), linear-gradient(135deg, #202020 0 72%, #ffc757 72%); color: #fff; }
.simple-hero-fallback span { color: var(--simple-yellow); font-size: .85rem; font-weight: 600; letter-spacing: .16em; }
.simple-hero-fallback h2 { max-width: 560px; margin: 8px 0 0; font-size: clamp(2rem, 4vw, 4rem); font-weight: 500; line-height: .98; text-transform: uppercase; }
.simple-hero-fallback > a { display: inline-flex; min-height: 48px; align-items: center; gap: 12px; flex: 0 0 auto; padding: 0 18px; border-radius: 12px; background: #fff; color: var(--simple-ink); }

.simple-category-filter { display: flex; align-items: flex-start; gap: 14px; min-width: 0; margin: 0; overflow-x: auto; padding: 2px 2px 10px; border: 0; border-radius: 0; background: transparent; scrollbar-width: none; }
.simple-category-filter::-webkit-scrollbar { display: none; }
.simple-category-filter a { display: flex; width: 100px; min-width: 100px; align-items: center; flex-direction: column; gap: 8px; color: var(--simple-ink); text-align: center; }
.simple-category-filter a > span:last-child { display: -webkit-box; overflow: hidden; font-size: .82rem; line-height: 1.15; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.simple-category-icon { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid var(--simple-line); border-radius: 50%; background: #fff; color: var(--simple-ink); font-size: 1.15rem; font-weight: 600; box-shadow: 0 5px 13px rgba(0,0,0,.045); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.simple-category-filter a:hover .simple-category-icon { transform: translateY(-2px); border-color: var(--simple-ink); }
.simple-category-filter a.active .simple-category-icon { border-color: var(--simple-yellow); background: var(--simple-yellow); box-shadow: 0 7px 16px rgba(255,199,87,.35); }
.simple-category-filter a.active > span:last-child { font-weight: 600; }
.simple-discovery.is-filtered .simple-category-filter { display: flex; gap: 14px; margin-bottom: 28px; overflow-x: auto; padding: 2px 2px 10px; border: 0; border-radius: 0; background: transparent; }
.simple-discovery.is-filtered .simple-category-filter a { width: 104px; min-width: 104px; }

.simple-products-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.simple-products-heading h1 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 500; line-height: 1; text-transform: uppercase; }
.simple-products-heading p { margin: 0; color: var(--text-grey); font-size: .9rem; white-space: nowrap; }
.simple-product-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.simple-product-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--simple-line); border-radius: 16px; background: #fff; box-shadow: 0 7px 20px rgba(0,0,0,.055); transition: transform .2s ease, box-shadow .2s ease; }
.simple-product-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,.1); }
.simple-product-image { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--simple-soft); }
.simple-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.simple-product-card:hover .simple-product-image img { transform: scale(1.035); }
.simple-favorite-button { position: absolute; top: 10px; right: 10px; display: grid; width: 40px; height: 40px; min-height: 40px; place-items: center; border: 1px solid rgba(0,0,0,.1); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--simple-ink); box-shadow: 0 4px 12px rgba(0,0,0,.1); cursor: pointer; transition: transform .2s ease, color .2s ease; }
.simple-favorite-button:hover { transform: scale(1.05); }
.simple-favorite-button.active { color: #d62445; }
.simple-favorite-button.has-error { animation: simpleShake .3s linear 2; }
.simple-product-info { display: block; min-height: 126px; padding: 14px; color: var(--simple-ink); }
.simple-product-info small { display: block; overflow: hidden; margin-bottom: 5px; color: var(--text-grey); font-size: .7rem; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.simple-product-info h2 { display: -webkit-box; min-height: 40px; margin: 0 0 10px; overflow: hidden; font-size: .98rem; font-weight: 450; line-height: 1.25; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.simple-product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.simple-product-info strong { color: var(--simple-ink); font-size: 1.12rem; font-weight: 600; }
.simple-product-open { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--simple-yellow); font-size: .72rem; }
.simple-pagination { display: flex; width: fit-content; min-height: 58px; align-items: center; justify-content: center; gap: 12px; margin: 32px auto 0; padding: 7px 9px; border: 1px solid var(--simple-line); border-radius: 18px; background: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.055); }
.simple-pagination a, .simple-page-arrow { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border: 1px solid var(--simple-line); border-radius: 50%; background: #fff; }
.simple-pagination a:hover { border-color: var(--simple-ink); }
.simple-pagination a i { color: var(--simple-ink); }
.simple-page-arrow.is-disabled { color: #c6c6c2; background: var(--simple-soft); }
.simple-page-arrow.is-disabled i { color: inherit; }
.simple-page-status { display: flex; min-width: 62px; align-items: baseline; justify-content: center; gap: 5px; color: var(--text-grey); }
.simple-page-status strong { color: var(--simple-ink); font-size: 1rem; font-weight: 600; }
.simple-page-status small { color: var(--text-grey); font-size: .75rem; }
.simple-empty-products { padding: 80px 20px; border: 1px solid var(--simple-line); border-radius: 16px; background: var(--simple-soft); text-align: center; }
.simple-empty-products i { margin-bottom: 15px; color: var(--text-grey); font-size: 2rem; }
.simple-empty-products h2 { margin: 0 0 18px; font-weight: 450; }
.simple-empty-products a { display: inline-flex; min-height: 44px; align-items: center; padding: 0 18px; border-radius: 10px; background: var(--simple-ink); color: #fff; }
.simple-csrf-token { display: none; }

.simple-favorites-page { width: min(1280px, 100%); min-height: 60vh; margin: 0 auto; padding: 34px 24px 72px; }
.simple-favorites-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--simple-line); }
.simple-favorites-header h1 { margin: 0; color: var(--simple-ink); font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 500; line-height: 1; text-transform: uppercase; }
.simple-favorites-count { color: var(--text-grey); font-size: .88rem; white-space: nowrap; }
.simple-favorites-grid [data-favorite-card] { transform-origin: center; }
.simple-favorites-grid [data-favorite-card].is-leaving { opacity: 0; transform: scale(.94); }
.simple-favorites-grid .simple-favorite-button.is-removing { opacity: .55; transform: scale(.9); }
.simple-favorites-empty { display: flex; min-height: 360px; align-items: center; justify-content: center; flex-direction: column; padding: 44px 20px; border: 1px solid var(--simple-line); border-radius: 22px; background: var(--simple-soft); text-align: center; }
.simple-favorites-empty > span { display: grid; width: 76px; height: 76px; place-items: center; margin-bottom: 18px; border-radius: 50%; background: var(--simple-yellow); color: var(--simple-ink); font-size: 1.65rem; box-shadow: 0 9px 22px rgba(255,199,87,.3); }
.simple-favorites-empty h2 { margin: 0 0 7px; color: var(--simple-ink); font-size: 1.55rem; font-weight: 500; text-transform: uppercase; }
.simple-favorites-empty p { margin: 0 0 22px; color: var(--text-grey); }
.simple-favorites-empty a { display: inline-flex; min-height: 46px; align-items: center; gap: 12px; padding: 0 18px; border-radius: 12px; background: var(--simple-ink); color: #fff; }
.simple-favorites-empty a i { color: var(--simple-yellow); }

.simple-bottom-nav, .simple-menu-overlay, .simple-menu-sheet { display: none; }

@keyframes simpleShake { 25% { transform: translateX(-3px); } 75% { transform: translateX(3px); } }

@media (max-width: 1100px) {
    .simple-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .simple-header-inner { gap: 16px; }
    .simple-header-nav > a > span { display: none; }
    .simple-header-nav .simple-company-link > span { display: inline; }
    .simple-account-label, .simple-account-chevron { display: none; }
    .simple-account-trigger { width: 44px; padding: 3px; border-radius: 50%; }
}

@media (max-width: 900px) {
    .simple-discovery { display: block; margin-bottom: 24px; }
    .simple-hero, .simple-hero-fallback { margin-bottom: 18px; }
    .simple-hero-fallback { min-height: 240px; }
    .simple-category-filter, .simple-discovery.is-filtered .simple-category-filter { display: flex; gap: 12px; margin: 0; overflow-x: auto; padding: 2px 2px 10px; border: 0; border-radius: 0; background: transparent; }
    .simple-category-filter a, .simple-discovery.is-filtered .simple-category-filter a { width: 94px; min-width: 94px; }
}

@media (max-width: 700px) {
    .interface-mode-simple { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
    .interface-mode-simple > footer { display: none; }
    .simple-header-inner { position: relative; min-height: 64px; justify-content: flex-end; padding: 8px 14px; }
    .simple-header-logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .simple-header-logo img { height: 31px; }
    .simple-header-nav { gap: 2px; }
    .simple-header-nav a { display: none; }
    .simple-account-menu { display: none; }
    .simple-header-nav .simple-cart-link { display: grid; width: 42px; min-height: 42px; place-items: center; padding: 0; border-radius: 50%; }
    .simple-header-nav .simple-cart-link i { font-size: 1.08rem; }
    .simple-header-nav b { top: -2px; left: 23px; }
    .simple-products-main { min-height: max-content; overflow: visible; padding: 14px 14px calc(112px + env(safe-area-inset-bottom)); }
    .simple-mobile-search { height: 52px; margin-bottom: 14px; padding-left: 16px; border-radius: 14px; }
    .simple-mobile-search button { width: 52px; height: 52px; }
    .simple-discovery { margin-bottom: 20px; }
    .simple-hero { margin-bottom: 14px; }
    .simple-hero-track { border-radius: 17px; }
    .simple-hero-slide { aspect-ratio: 2.5 / 1; }
    .simple-hero-fallback { min-height: 176px; align-items: flex-start; flex-direction: column; margin-bottom: 18px; padding: 22px; border-radius: 17px; background: radial-gradient(circle at 88% 18%, rgba(255,199,87,.46), transparent 22%), linear-gradient(135deg, #202020 0 77%, #ffc757 77%); }
    .simple-hero-fallback h2 { max-width: 270px; font-size: 2rem; }
    .simple-hero-fallback > a { min-height: 42px; }
    .simple-category-filter, .simple-discovery.is-filtered .simple-category-filter { gap: 8px; margin-right: -14px; margin-bottom: 0; padding-right: 14px; }
    .simple-category-filter a { width: 76px; min-width: 76px; gap: 7px; }
    .simple-category-filter a > span:last-child { font-size: .76rem; }
    .simple-category-icon { width: 52px; height: 52px; font-size: 1rem; }
    .simple-products-heading { align-items: center; margin-bottom: 14px; }
    .simple-products-heading h1 { font-size: 1.55rem; }
    .simple-products-heading p { font-size: .78rem; }
    .simple-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .simple-product-card { border-radius: 13px; box-shadow: 0 4px 12px rgba(0,0,0,.045); }
    .simple-product-card:hover { transform: none; box-shadow: none; }
    .simple-product-info { min-height: 118px; padding: 11px; }
    .simple-product-info small { font-size: .63rem; }
    .simple-product-info h2 { min-height: 38px; margin-bottom: 8px; font-size: .9rem; }
    .simple-product-info strong { font-size: 1rem; }
    .simple-product-open { width: 28px; height: 28px; }
    .simple-pagination { position: relative; z-index: 2; width: 100%; max-width: 280px; min-height: 56px; margin-top: 24px; border-radius: 16px; }
    .simple-pagination a, .simple-page-arrow { width: 40px; height: 40px; }
    .interface-mode-simple.product-detail-page .vit-product-detail-wrapper { margin-bottom: 0 !important; padding-bottom: calc(118px + env(safe-area-inset-bottom)) !important; overflow: visible; }
    .interface-mode-simple.product-detail-page .vit-company-card { scroll-margin-bottom: calc(90px + env(safe-area-inset-bottom)); }
    .simple-favorite-button { top: 7px; right: 7px; width: 38px; height: 38px; min-height: 38px; }
    .simple-favorites-page { padding: 22px 14px 34px; }
    .simple-favorites-header { margin-bottom: 16px; padding-bottom: 12px; }
    .simple-favorites-header h1 { font-size: 1.55rem; }
    .simple-favorites-count { font-size: .76rem; }
    .simple-favorites-empty { min-height: 330px; padding: 36px 18px; border-radius: 17px; }
    .simple-favorites-empty > span { width: 68px; height: 68px; }
    .simple-favorites-empty h2 { font-size: 1.35rem; }
    .simple-bottom-nav { position: fixed; z-index: 120; right: 0; bottom: 0; left: 0; display: grid; min-height: calc(70px + env(safe-area-inset-bottom)); grid-template-columns: repeat(5, 1fr); padding: 6px 8px env(safe-area-inset-bottom); border-top: 1px solid var(--simple-line); background: rgba(255,255,255,.97); box-shadow: 0 -8px 24px rgba(0,0,0,.08); backdrop-filter: blur(14px); }
    .simple-bottom-nav > a, .simple-menu-trigger { position: relative; display: flex; min-width: 0; min-height: 58px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; border: 0; border-radius: 12px; background: transparent; color: var(--text-grey); font: 400 .7rem "Oswald", sans-serif; cursor: pointer; }
    .simple-bottom-nav > a i, .simple-menu-trigger i { color: inherit; font-size: 1.18rem; }
    .simple-bottom-nav > a.active, .simple-menu-trigger.active, .simple-menu-trigger[aria-expanded="true"] { color: var(--simple-ink); font-weight: 600; }
    .simple-bottom-nav > a.active > i, .simple-menu-trigger.active > i, .simple-menu-trigger[aria-expanded="true"] > i { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--simple-yellow); color: var(--simple-ink); }
    .simple-bottom-icon { position: relative; display: inline-flex; }
    .simple-bottom-nav > a.active .simple-bottom-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--simple-yellow); color: var(--simple-ink); }
    .simple-bottom-nav > a.active .simple-bottom-icon i { color: inherit; }
    .simple-bottom-icon b { position: absolute; top: -9px; left: 12px; display: grid; min-width: 18px; height: 18px; place-items: center; padding: 0 4px; border: 2px solid white; border-radius: 99px; background: var(--text-yellow); color: var(--text-dark); font-size: .62rem; }
    .simple-bottom-nav > .simple-bottom-profile { align-self: start; gap: 1px; transform: translateY(-17px); color: var(--simple-ink); font-weight: 600; }
    .simple-profile-orb { display: grid; width: 52px; height: 52px; place-items: center; border: 4px solid white; border-radius: 50%; background: var(--simple-yellow); color: var(--simple-ink); box-shadow: 0 7px 18px rgba(27,27,27,.2); transition: transform .2s ease, box-shadow .2s ease; }
    .simple-bottom-nav > .simple-bottom-profile .simple-profile-orb i { color: inherit; font-size: 1.18rem; }
    .simple-bottom-nav > .simple-bottom-profile.active .simple-profile-orb { box-shadow: 0 0 0 2px var(--simple-ink), 0 8px 20px rgba(27,27,27,.22); }
    .simple-bottom-nav > .simple-bottom-profile:active .simple-profile-orb { transform: scale(.94); }
    .simple-bottom-nav > .simple-bottom-profile:focus-visible { outline: none; }
    .simple-bottom-nav > .simple-bottom-profile:focus-visible .simple-profile-orb { outline: 3px solid var(--simple-ink); outline-offset: 2px; }
    .simple-menu-overlay { position: fixed; z-index: 130; inset: 0; display: block; background: rgba(0,0,0,.42); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
    .simple-menu-overlay.open { opacity: 1; pointer-events: auto; }
    .simple-menu-sheet { position: fixed; z-index: 140; right: 0; bottom: 0; left: 0; display: block; width: 100%; max-width: none; max-height: calc(100dvh - 44px); overflow-y: auto; padding: 8px 16px calc(22px + env(safe-area-inset-bottom)); border-radius: 22px 22px 0 0; background: var(--bg-base); box-shadow: 0 -18px 50px rgba(0,0,0,.2); transform: translateY(105%); visibility: hidden; transition: transform .28s ease, visibility .28s; }
    .simple-menu-sheet.open { transform: translateY(0); visibility: visible; }
    .simple-menu-sheet::before { content: ""; display: block; width: 42px; height: 4px; margin: 2px auto 8px; border-radius: 99px; background: var(--bg-base-grey-dark); }
    .simple-menu-sheet-header { display: flex; min-height: 54px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--bg-base-grey); }
    .simple-menu-sheet-header h2 { margin: 0; font-size: 1.35rem; font-weight: 500; text-transform: uppercase; }
    .simple-menu-sheet-header button { display: grid; width: 44px; height: 44px; min-height: 44px; place-items: center; border: 0; border-radius: 50%; background: var(--bg-base-grey); cursor: pointer; }
    .simple-menu-links { display: grid; gap: 6px; padding-top: 10px; }
    .simple-menu-links a { display: flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 12px; padding: 0 12px; border-radius: 10px; color: var(--text-dark); }
    .simple-menu-links a:active { background: var(--bg-base-grey); }
    .simple-menu-links a > span { display: flex; align-items: center; gap: 13px; font-weight: 450; }
    .simple-menu-links a > span i { display: grid; width: 24px; place-items: center; color: var(--text-grey); }
    .simple-menu-links a > i { color: var(--text-grey); font-size: .75rem; }
    .simple-menu-links .simple-menu-company { background: rgba(255,199,87,.18); }
    .simple-menu-links .simple-menu-company > span i { color: #9a7100; }
    .simple-menu-links .simple-menu-backoffice { background: var(--text-dark); color: #fff; }
    .simple-menu-links .simple-menu-backoffice > span, .simple-menu-links .simple-menu-backoffice > i { color: #fff; }
    .simple-menu-links .simple-menu-backoffice > span i { color: var(--text-yellow); }
    .simple-menu-links .simple-menu-backoffice:active { background: #353535; }
    .simple-menu-links .simple-menu-logout { margin-top: 4px; border-top: 1px solid var(--bg-base-grey); border-radius: 0; color: var(--text-danger); }
    .simple-menu-links .simple-menu-logout > span i { color: var(--text-danger); }
    .simple-menu-open { overflow: hidden; }
    .interface-mode-simple .container-carrinho, .interface-mode-simple .favorites-container, .interface-mode-simple .vit-dashboard-profile { margin-bottom: 0; }
    .interface-mode-simple button, .interface-mode-simple .btn-continuar, .interface-mode-simple .view-btn { min-height: 44px; }
    .interface-mode-simple .simple-hero-dots button { min-height: 8px; }
    .interface-mode-simple .controle-qtd button { min-width: 44px; min-height: 44px; }
}

@media (max-width: 370px) {
    .simple-header-logo { left: 14px; transform: none; }
    .simple-category-filter a { width: 70px; min-width: 70px; }
    .simple-product-info { padding: 10px; }
    .simple-product-info strong { font-size: .93rem; }
}

@media (prefers-reduced-motion: reduce) {
    .simple-hero-track { scroll-behavior: auto; }
    .simple-category-icon, .simple-product-card, .simple-product-image img, .simple-favorite-button, .simple-menu-overlay, .simple-menu-sheet, .simple-account-trigger, .simple-account-dropdown, .simple-account-chevron { transition: none; }
}
