:root {
    /* Noir & Gold — sharp editorial */
    --primary: #0d0d0d;
    --primary-2: #1a1a1a;
    --primary-3: #2a2a2a;
    --indigo: #c9a84c;          /* gold (kept var name for compat) */
    --indigo-2: #d4b86a;
    --indigo-soft: #f7f1de;
    --accent: #c9a84c;
    --gold: #c9a84c;
    --gold-soft: #f0d78c;
    --bg: #fafaf7;
    --bg-2: #ffffff;
    --text: #0d0d0d;
    --orange: #c9a84c;          /* repurposed: brand CTA = gold */
    --orange-dark: #a8893a;
    --muted: #6b6b6b;
    --line: #e8e6df;
    --white: #ffffff;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --header-height: 88px;
    --shadow-sm: 0 1px 0 rgba(13,13,13,0.04);
    --shadow-md: 0 8px 24px -12px rgba(13,13,13,0.12);
    --shadow-lg: 0 24px 60px -24px rgba(13,13,13,0.25);
    --shadow-glow: 0 10px 30px -12px rgba(201,168,76,0.45);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

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

button,
input,
a,
img {
    transition: 0.25s ease;
}

.client-form {
    display: grid;
    gap: 10px;
}

.client-form label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.04em;
}

.client-form label span {
    color: #dc2626;
}

.client-form label small {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0;
}

.client-form input,
.client-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text);
    background: var(--white);
}

.client-form textarea {
    resize: vertical;
    min-height: 90px;
}

.form-required-note {
    margin-bottom: 4px;
    font-size: 12px;
    color: var(--muted);
}

.form-required-note span {
    color: #dc2626;
    font-weight: 700;
}


/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: var(--header-height);
    background: var(--primary);
    z-index: 2000;
    display: grid;
    grid-template-columns: auto minmax(240px, 430px) auto auto;
    align-items: center;
    gap: 18px;
    padding: 16px 8%;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.16);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 44px;
    display: block;
}

.logo img:hover {
    transform: scale(1.03);
}

.search-bar {
    width: 100%;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-width: 0;
}

.search-bar input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    padding: 13px 18px;
    font-size: 14px;
    color: var(--text);
}

.search-bar input::placeholder {
    color: #94a3b8;
}

.search-bar button {
    height: 46px;
    min-width: 50px;
    border: none;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-bar button:hover {
    background: #2a2a2a;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    opacity: 0.96;
}

.main-nav a:hover {
    color: var(--orange);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}

.cart-trigger,
.menu-toggle,
.search-trigger {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    border: none;
}

.cart-trigger:hover,
.menu-toggle:hover,
.search-trigger:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.cart-trigger {
    position: relative;
    font-size: 20px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    font-size: 21px;
    display: none;
}

.search-trigger {
    display: none;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: inline-flex;
}

/* BOTÕES */

.btn-orange,
.btn-highlight {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 16px 40px !important;
    border-radius: 999px !important;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    border: none;
    cursor: pointer;
}

.btn-orange:hover,
.btn-highlight:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-2px);
}

.btn-det,
.btn-add {
    min-height: 46px;
    padding: 12px 10px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-det {
    background: #eef2f7;
    color: var(--primary);
}

.btn-det:hover {
    background: #e2e8f0;
}

.btn-add {
    background: var(--primary);
    color: var(--white);
}

.btn-add:hover {
    background: #2a2a2a;
}

.btn-add:disabled {
    background: #cbd5e1;
    color: #64748b;
    cursor: not-allowed;
    transform: none;
}

/* FILTROS */

.filters {
    position: sticky;
    top: var(--header-height);
    z-index: 1800;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 8%;
    background: rgba(248, 250, 252, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.filter-btn {
    border: 1px solid #dbe4f0;
    background: var(--white);
    color: var(--primary);
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--orange);
    color: var(--orange-dark);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(11, 26, 58, 0.2);
}

/* CONTEÚDO */

.container {
    padding: 24px 8% 40px;
    min-height: 50vh;
}

/* suporte para ambas as classes */
.products-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    gap: 28px;
}

.card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.card.disabled {
    opacity: 0.55;
    filter: grayscale(1);
    pointer-events: none;
}

.card img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
}

.card h3,
.card h4 {
    font-size: 15px;
    margin: 10px 0;
    min-height: 45px;
    overflow: hidden;
    color: var(--primary);
    font-weight: 600;
}

.card p {
    line-height: 1.6;
}

.sku {
    font-size: 11px;
    color: #94a3b8;
    margin: 4px 0 6px;
    display: block;
    text-align: center;
    letter-spacing: 0.3px;
}

.price-tag {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 15px;
    display: block;
    min-height: 24px;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: auto;
    align-items: center;
}

.btn-group .btn-det,
.btn-group .btn-add,
.btn-group .qty-inline-control {
    flex: 1;
}

.qty-inline-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 6px 10px;
    min-height: 46px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
}

.qty-inline-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qty-inline-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.04);
}

.qty-inline-value {
    min-width: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

/* CLIENTES */

.clients-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 72px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.clients-container img {
    width: auto !important;
    max-width: 210px;
    max-height: 62px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.88 !important;
    flex-shrink: 0;
}

.clients-container img:hover {
    filter: grayscale(0%);
    opacity: 1 !important;
    transform: scale(1.05);
}

/* CARRINHO */

.sidebar {
    position: fixed;
    top: 0;
    right: -430px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--white);
    z-index: 3000;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -16px 0 40px rgba(15, 23, 42, 0.18);
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h4 {
    font-size: 18px;
}

.sidebar-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-close {
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.cart-clear-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.cart-clear-btn:hover {
    background: var(--orange);
    transform: rotate(-8deg);
}

.sidebar-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.client-form {
    background: #f8fafc;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.client-form label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.4px;
}

.client-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    outline: none;
    font-size: 14px;
    background: var(--white);
}

.client-form input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

#cartItems {
    display: flex;
    flex-direction: column;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: flex-start;
}

.cart-item-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    flex-shrink: 0;
}

.qty-ctrl {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: var(--white);
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
}

.qty-btn:hover {
    border-color: var(--orange);
    color: var(--orange-dark);
}

.cart-item-meta {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    margin-left: auto;
    padding-left: 8px;
}

.cart-total-container {
    padding: 15px 0;
    border-top: 2px solid var(--primary);
    margin-top: 15px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: var(--primary);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: var(--white);
}

.btn-order {
    width: 100%;
    padding: 15px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-order:hover {
    background: var(--orange-dark);
}

/* MODAL */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2600;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 820px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

#modalData {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.main-view {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid #eee;
}

.thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.thumb-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 10px;
}

.thumb-img:hover {
    border-color: var(--primary);
}

/* SWIPER / GALERIA */

.swiper {
    width: 100%;
    padding-bottom: 46px !important;
}

.factory-swiper-wrap {
    overflow: hidden;
}

.factory-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    transform: scale(0.72);
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.92);
    width: 46px !important;
    height: 46px !important;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--orange) !important;
}

/* FOOTER */

.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 8% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    display: block;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--orange);
    font-size: 14px;
    text-transform: uppercase;
}

.footer-section p {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 10px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 22px;
}

.social-links a:hover {
    color: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: #94a3b8;
}

/* UTILITÁRIOS */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 24px;
    background: var(--accent);
    color: var(--white) !important;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1200;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.20);
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.empty-state {
    text-align: center;
    grid-column: 1 / -1;
    padding: 50px 20px;
    color: var(--muted);
}

/* RESPONSIVO */

@media (max-width: 1200px) {
    header {
        grid-template-columns: auto minmax(220px, 380px) auto auto;
        padding-left: 5%;
        padding-right: 5%;
    }

    .filters,
    .container,
    .main-footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .clients-container {
        gap: 42px;
    }

    .clients-container img {
        max-width: 180px;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 82px;
    }

    header {
        grid-template-columns: auto 1fr auto;
        padding: 12px 5%;
        gap: 12px;
    }

    .logo img {
        height: 40px;
    }

    .search-bar {
        max-width: none;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 12px rgba(0, 0, 0, 0.12);
        transition: left 0.25s ease;
        z-index: 1999;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .clients-container {
        gap: 24px;
    }

    .clients-container img {
        max-width: 145px;
        max-height: 54px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 78px;
    }

    header {
        grid-template-columns: 42px 1fr auto;
        align-items: center;
        padding: 10px 4%;
        gap: 10px;
    }

    .mobile-only {
        display: inline-flex;
    }

    .desktop-only {
        display: none;
    }

    .search-trigger {
        display: inline-flex;
    }

    .menu-toggle.mobile-only {
        grid-column: 1;
        justify-self: start;
        display: inline-flex;
    }

    .logo {
        grid-column: 2;
        justify-self: center;
        display: flex;
        justify-content: center;
    }

    .logo a {
        justify-content: center;
    }

    .logo img {
        height: 38px;
    }

    .search-bar {
        position: absolute;
        top: calc(100% + 8px);
        left: 4%;
        right: 4%;
        width: auto;
        display: none;
        z-index: 2100;
        box-shadow: 0 12px 24px rgba(2, 6, 23, 0.16);
    }

    .search-bar.active {
        display: flex;
    }

    .main-nav {
        top: var(--header-height);
    }

    .header-tools {
        grid-column: 3;
        justify-self: end;
        gap: 8px;
    }

    .filters {
        top: var(--header-height);
        padding: 12px 4%;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .container {
        padding: 20px 4% 40px;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-det,
    .btn-add,
    .qty-inline-control {
        width: 100%;
    }

    .modal-content {
        padding: 20px;
    }

    #modalData {
        grid-template-columns: 1fr;
    }

    .sidebar {
        max-width: 100%;
        right: -100%;
    }

    .main-footer {
        padding-left: 4%;
        padding-right: 4%;
    }

    .factory-img {
        height: 250px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 54px;
        height: 54px;
        font-size: 27px;
    }

    .clients-container {
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .clients-container img {
        max-width: 110px;
        max-height: 42px;
    }
}

/* LINE HOTEL */

.btn-ghost-light {
    border: 1px solid rgba(255,255,255,0.28);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-2px);
}

.line-hotel-hero {
    position: relative;
    padding: 88px 8% 96px;
    background:
        linear-gradient(135deg, rgba(11,26,58,0.92), rgba(11,26,58,0.72)),
        url('https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: var(--white);
}

.line-hotel-hero__content {
    max-width: 760px;
}

.hero-kicker,
.hotel-category-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
}

.line-hotel-hero h1 {
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: 1.05;
    margin: 18px 0 18px;
}

.line-hotel-hero p {
    font-size: 17px;
    line-height: 1.75;
    opacity: 0.95;
    max-width: 640px;
}

.line-hotel-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.line-hotel-banners {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 0 8%;
    margin-top: -42px;
    position: relative;
    z-index: 2;
}

.hotel-mini-banner {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.hotel-mini-banner span {
    color: var(--orange-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}

.hotel-mini-banner h3 {
    color: var(--primary);
    font-size: 22px;
    line-height: 1.25;
    margin: 12px 0 10px;
}

.hotel-mini-banner p {
    color: var(--muted);
    line-height: 1.7;
}

.line-hotel-container {
    padding-top: 36px;
}

.hotel-category-section {
    margin-bottom: 48px;
}

.hotel-category-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.hotel-category-head h2 {
    color: var(--primary);
    font-size: clamp(1.8rem, 2vw, 2.5rem);
    margin-top: 12px;
}

.hotel-category-head p {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.7;
}

/* CORREÇÃO DA GRADE DA LINE HOTEL */
#lineHotelSections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.line-hotel-category-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.line-hotel-category-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.line-hotel-category-section .section-header h2 {
    font-size: 1.55rem;
    line-height: 1.2;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

.line-hotel-category-section .product-grid,
#lineHotelSections .product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px;
    align-items: stretch;
}

.line-hotel-category-section .card,
#lineHotelSections .card {
    width: 100% !important;
    min-width: 0;
    max-width: none !important;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.line-hotel-category-section .card img,
#lineHotelSections .card img {
    width: 100%;
    height: 210px;
    object-fit: contain;
}

.line-hotel-category-section .btn-group,
#lineHotelSections .btn-group {
    display: flex;
    gap: 10px;
    margin-top: auto;
    align-items: center;
}

.line-hotel-category-section .btn-group .btn-det,
.line-hotel-category-section .btn-group .btn-add,
.line-hotel-category-section .btn-group .qty-inline-control,
#lineHotelSections .btn-group .btn-det,
#lineHotelSections .btn-group .btn-add,
#lineHotelSections .btn-group .qty-inline-control {
    flex: 1;
}

@media (max-width: 1024px) {
    .line-hotel-banners {
        grid-template-columns: 1fr;
        margin-top: -26px;
    }

    .hotel-category-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .line-hotel-category-section .product-grid,
    #lineHotelSections .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .line-hotel-hero {
        padding: 62px 6% 72px;
    }

    .line-hotel-banners {
        padding: 0 6%;
    }

    .line-hotel-container {
        padding-left: 6%;
        padding-right: 6%;
    }

    .line-hotel-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-ghost-light,
    .line-hotel-hero__actions .btn-orange {
        width: 100% !important;
    }

    .line-hotel-category-section .product-grid,
    #lineHotelSections .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .line-hotel-category-section .product-grid,
    #lineHotelSections .product-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
}
/* =========================================================
   AJUSTE FINAL - CARRINHO MOBILE COM BOTÃO SEMPRE VISÍVEL
   Mantém o conteúdo rolável e fixa a ação principal no rodapé.
   ========================================================= */

.sidebar {
    display: flex;
    flex-direction: column;
}

.sidebar-header,
.sidebar-footer {
    flex-shrink: 0;
}

.sidebar-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

.sidebar-footer {
    background: var(--white);
    z-index: 3;
}

.sidebar-footer .btn-order {
    width: 100%;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        max-width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        right: -100%;
    }

    .sidebar.active {
        right: 0;
    }

    .sidebar-body {
        padding-bottom: 18px;
        -webkit-overflow-scrolling: touch;
    }

    .sidebar-footer {
        position: sticky;
        bottom: 0;
        left: 0;
        padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -10px 24px rgba(11, 26, 58, 0.12);
    }

    .sidebar-footer .btn-order {
        min-height: 54px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 800;
    }
}

/* HOME COMERCIAL */
.home-commercial-section {
    padding: 76px 8%;
    background: var(--bg);
}

.home-categories-section {
    padding-top: 24px;
    background: linear-gradient(180deg, var(--bg), #eef2f7);
}

.home-section-head {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.home-section-head h2 {
    color: var(--primary);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 12px;
}

.home-section-head p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.home-products-grid {
    margin-top: 16px;
}

.home-section-action {
    margin-top: 34px;
    text-align: center;
}

.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.home-category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.9);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.home-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.home-category-card__image {
    height: 180px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--line);
}

.home-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
}

.home-category-card__image i {
    font-size: 46px;
    color: var(--orange);
}

.home-category-card__body {
    padding: 22px;
}

.home-category-card__body span {
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.home-category-card__body h3 {
    color: var(--primary);
    margin: 10px 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

.home-category-card__body p {
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 768px) {
    .home-commercial-section {
        padding: 56px 4%;
    }

    .home-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* HOME NOVA - CATEGORIAS E DESTAQUES EM ROLAGEM INFINITA */
.home-hero {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-category-marquee,
.home-product-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 8px 0 18px;
}

.home-category-marquee::before,
.home-category-marquee::after,
.home-product-marquee::before,
.home-product-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.home-category-marquee::before,
.home-product-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), rgba(248,250,252,0));
}

.home-category-marquee::after,
.home-product-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg), rgba(248,250,252,0));
}

.home-category-marquee__track,
.home-product-marquee__track {
    display: flex;
    align-items: stretch;
    width: max-content;
    gap: 18px;
    animation: homeScrollRight 34s linear infinite;
}

.home-product-marquee__track {
    gap: 24px;
    animation-duration: 46s;
}

.home-category-marquee:hover .home-category-marquee__track,
.home-product-marquee:hover .home-product-marquee__track {
    animation-play-state: paused;
}

@keyframes homeScrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.home-category-pill {
    min-width: 250px;
    min-height: 92px;
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.home-category-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.home-category-pill__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.13);
    color: var(--orange-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.home-category-pill__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-category-pill__text strong {
    color: var(--primary);
    font-size: 15px;
    line-height: 1.2;
}

.home-category-pill__text small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.home-featured-sections {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.home-featured-category {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.home-featured-category__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 22px;
    margin-bottom: 24px;
}

.home-featured-category__head .home-kicker {
    margin-bottom: 10px;
}

.home-featured-category__head h2 {
    color: var(--primary);
    font-size: clamp(1.7rem, 2.5vw, 2.6rem);
    line-height: 1.1;
}

.home-category-link {
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.home-category-link:hover {
    color: var(--orange-dark);
}

.home-product-slide {
    width: 285px;
    flex: 0 0 285px;
    display: flex;
}

.home-product-slide .card {
    width: 100%;
}

.home-product-slide .card:hover {
    transform: translateY(-3px);
}

.institutional-hero {
    padding: 92px 8%;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(11,26,58,0.92), rgba(11,26,58,0.72)),
        url('https://i.postimg.cc/d1NhRMGr/Hero-secction-banner.jpg') center/cover no-repeat;
}

.institutional-hero h1 {
    max-width: 780px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
    margin: 18px 0;
}

.institutional-hero p {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.7;
    opacity: .95;
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 480px;
    }

    .home-category-marquee::before,
    .home-category-marquee::after,
    .home-product-marquee::before,
    .home-product-marquee::after {
        width: 34px;
    }

    .home-category-pill {
        min-width: 220px;
    }

    .home-featured-category {
        padding: 22px 16px;
    }

    .home-featured-category__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-product-slide {
        width: 245px;
        flex-basis: 245px;
    }

    .institutional-hero {
        padding: 68px 6%;
    }
}

/* AJUSTES HEADER / BUSCA MODAL / DROPDOWN PRODUTOS */
header {
    grid-template-columns: auto 1fr auto;
}

.main-nav {
    justify-self: center;
}

.search-trigger {
    display: inline-flex;
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown__trigger i {
    font-size: 10px;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    max-height: 390px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2600;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    border-bottom: none !important;
}

.nav-dropdown__menu a:hover {
    background: #f8fafc;
    color: var(--orange-dark) !important;
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2800;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(8px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 110px 20px 30px;
}

.search-overlay.active {
    display: flex;
}

.search-modal {
    width: min(720px, 100%);
    background: var(--white);
    border-radius: 28px;
    padding: 34px;
    position: relative;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.28);
}

.search-modal h2 {
    color: var(--primary);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.search-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--primary);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.search-modal__bar {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    background: #f8fafc;
}

.search-modal__bar input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 17px 22px;
    font: inherit;
    color: var(--text);
}

.search-modal__bar button {
    width: 58px;
    height: 58px;
    border: none;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
}

.search-modal__hint {
    color: var(--muted);
    font-size: 13px;
    margin-top: 14px;
}

.home-section-head--left,
.home-featured-category__head {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.home-categories-section {
    padding-top: 58px;
}

.home-category-marquee {
    padding-top: 16px;
}

.home-category-pill {
    min-width: 150px;
    min-height: 160px;
    border-radius: 28px;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 22px 18px;
}

.home-category-pill__icon {
    width: 74px;
    height: 74px;
    font-size: 28px;
}

.home-category-pill__text {
    align-items: center;
}

.home-category-pill__text small {
    display: none;
}

.home-category-pill__text strong {
    font-size: 15px;
}

.home-featured-category {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.home-featured-category__head {
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
}

.home-featured-category__head .home-kicker {
    display: none;
}

@media (max-width: 992px) {
    header {
        grid-template-columns: auto 1fr auto;
    }

    .nav-dropdown {
        width: 100%;
        flex-direction: column;
    }

    .nav-dropdown__menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        width: 100%;
        min-width: 0;
        max-height: 260px;
        display: none;
        box-shadow: none;
        margin-top: 8px;
    }

    .nav-dropdown:hover .nav-dropdown__menu,
    .nav-dropdown:focus-within .nav-dropdown__menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .search-overlay {
        padding-top: 92px;
    }

    .search-modal {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .home-category-pill {
        min-width: 132px;
        min-height: 142px;
        padding: 18px 14px;
    }

    .home-category-pill__icon {
        width: 64px;
        height: 64px;
    }
}

/* =========================================================
   AJUSTES SOLICITADOS - HEADER, BUSCA, DROPDOWN E CARROSSÉIS
   ========================================================= */
header {
    grid-template-columns: auto auto 1fr;
    justify-content: start;
}

.main-nav {
    justify-self: start !important;
    justify-content: flex-start;
    margin-left: 10px;
}

.header-tools {
    justify-self: end;
    margin-left: auto;
}

.nav-dropdown__menu {
    left: 0;
    transform: translateY(8px);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
}

.nav-dropdown.active .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.search-overlay {
    position: fixed;
    inset: auto 8% auto auto;
    top: calc(var(--header-height) - 4px);
    width: min(420px, calc(100vw - 32px));
    z-index: 2800;
    background: transparent;
    backdrop-filter: none;
    display: none;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0;
    pointer-events: none;
}

.search-overlay.active {
    display: flex;
}

.search-modal {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px 52px 14px 14px;
    box-shadow: 0 18px 46px rgba(2, 6, 23, 0.18);
    pointer-events: auto;
}

.search-modal h2,
.search-modal .home-kicker,
.search-modal__hint {
    display: none;
}

.search-modal__close {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    font-size: 24px;
}

.search-modal__bar input {
    padding: 13px 18px;
    font-size: 14px;
}

.search-modal__bar button {
    width: 48px;
    height: 48px;
}

.home-section-head h2 {
    font-size: clamp(1.65rem, 2.5vw, 2.5rem);
}

.home-category-marquee,
.home-product-marquee {
    overflow: visible;
    padding-bottom: 54px;
}

.home-category-marquee::before,
.home-category-marquee::after,
.home-product-marquee::before,
.home-product-marquee::after {
    display: none;
}

.home-category-marquee__track,
.home-product-marquee__track {
    animation: none !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 4px 2px 10px;
}

.home-category-marquee__track::-webkit-scrollbar,
.home-product-marquee__track::-webkit-scrollbar,
.filter-scroll-viewport::-webkit-scrollbar {
    display: none;
}

.home-category-pill,
.home-product-slide {
    scroll-snap-align: start;
}

.carousel-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    pointer-events: auto;
}

.carousel-btn,
.filter-scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.carousel-btn:hover,
.filter-scroll-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.carousel-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 52px;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
}

.carousel-dot.active {
    width: 22px;
    background: var(--orange);
}

.filters {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.filter-scroll-viewport {
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-scroll-track {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    padding: 2px 0;
}

.filter-btn--icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 88px;
    min-height: 76px;
    padding: 10px 12px;
    border-radius: 18px;
    text-align: center;
    font-size: 10px;
    line-height: 1.2;
}

.filter-btn__icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff3df;
    color: var(--orange-dark);
    font-size: 13px;
}

.filter-btn--icon.active .filter-btn__icon {
    background: rgba(255,255,255,0.16);
    color: var(--white);
}

@media (max-width: 992px) {
    header {
        grid-template-columns: auto 1fr auto;
    }

    .main-nav {
        margin-left: 0;
    }

    .nav-dropdown.active .nav-dropdown__menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .search-overlay {
        top: calc(var(--header-height) + 8px);
        right: 4%;
        left: 4%;
        width: auto;
    }

    .search-modal {
        padding: 12px 48px 12px 12px;
        border-radius: 16px;
    }

    .home-section-head h2 {
        font-size: 1.7rem;
    }

    .filters {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        padding-left: 4%;
        padding-right: 4%;
    }

    .filter-scroll-btn {
        width: 36px;
        height: 36px;
    }

    .filter-btn--icon {
        min-width: 78px;
        min-height: 70px;
        padding: 9px 10px;
    }
}

/* =========================================================
   CORREÇÃO FINAL - CARROSSÉIS CLICÁVEIS + MOBILE
   ========================================================= */
.home-category-marquee,
.home-product-marquee {
    position: relative;
    width: 100%;
    overflow: hidden !important;
    padding-bottom: 58px !important;
}

.home-category-marquee__track,
.home-product-marquee__track {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 4px 12px;
}

.home-category-marquee__track::-webkit-scrollbar,
.home-product-marquee__track::-webkit-scrollbar {
    display: none;
}

.home-category-pill {
    flex: 0 0 154px !important;
    width: 154px !important;
    min-width: 154px !important;
    scroll-snap-align: start;
}

.home-product-slide {
    flex: 0 0 285px !important;
    width: 285px !important;
    min-width: 285px !important;
    scroll-snap-align: start;
}

.carousel-controls {
    z-index: 5;
}

.carousel-btn:disabled,
.filter-scroll-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
    transform: none;
}

/* Catálogo: categorias compactas em uma linha com botão */
.filters {
    overflow: visible !important;
}

.filter-scroll-viewport {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.filter-scroll-track {
    flex-wrap: nowrap !important;
    width: max-content;
}

.filter-btn--icon {
    flex: 0 0 auto;
}

/* Header desktop: menu próximo ao logo */
@media (min-width: 993px) {
    header {
        grid-template-columns: auto auto 1fr !important;
        align-items: center;
    }

    .main-nav {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        width: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-left: 18px !important;
        gap: 18px;
    }

    .main-nav a {
        border-bottom: none !important;
        width: auto !important;
        padding: 0 !important;
    }

    .nav-dropdown {
        width: auto !important;
    }
}

/* Mobile estável */
@media (max-width: 992px) {
    header {
        grid-template-columns: 42px 1fr auto !important;
    }

    .menu-toggle.mobile-only {
        display: inline-flex !important;
        grid-column: 1;
    }

    .logo {
        grid-column: 2;
        justify-self: center;
    }

    .header-tools {
        grid-column: 3;
        justify-self: end;
    }

    .main-nav {
        position: fixed !important;
        top: var(--header-height) !important;
        left: -100% !important;
        width: 100% !important;
        background: var(--primary) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 14px 20px 20px !important;
        transition: left .25s ease !important;
        z-index: 1999;
    }

    .main-nav.active {
        left: 0 !important;
    }

    .main-nav > a,
    .nav-dropdown__trigger {
        width: 100% !important;
        padding: 14px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.08) !important;
        justify-content: center;
        text-align: center;
    }

    .nav-dropdown__menu {
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        margin: 8px 0 14px !important;
        box-shadow: none !important;
        max-height: 280px;
        overflow-y: auto;
    }

    .nav-dropdown.active .nav-dropdown__menu {
        display: block !important;
    }

    .home-commercial-section {
        padding-left: 4% !important;
        padding-right: 4% !important;
    }

    .home-featured-category__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: auto;
        padding: 74px 5% !important;
    }

    .home-hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.05;
    }

    .home-category-pill {
        flex-basis: 132px !important;
        width: 132px !important;
        min-width: 132px !important;
        min-height: 136px !important;
    }

    .home-category-pill__icon {
        width: 58px !important;
        height: 58px !important;
        font-size: 23px !important;
    }

    .home-product-slide {
        flex-basis: 246px !important;
        width: 246px !important;
        min-width: 246px !important;
    }

    .home-product-slide .card img {
        height: 175px;
    }

    .carousel-controls {
        gap: 10px;
    }

    .carousel-btn,
    .filter-scroll-btn {
        width: 36px;
        height: 36px;
    }

    .filter-btn--icon {
        min-width: 76px !important;
        min-height: 68px !important;
        font-size: 9px;
        padding: 8px 9px;
    }
}

/* =========================================================
   BANNERS COMERCIAIS DA HOME + BOTÃO HERO MAIS DISCRETO
   ========================================================= */
.home-hero .btn-orange {
    padding: 12px 26px !important;
    min-height: 46px;
    font-size: 13px !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14) !important;
    letter-spacing: 0.02em;
}

.home-commercial-banners {
    padding: 0 8%;
    margin-top: -42px;
    position: relative;
    z-index: 3;
}

.home-commercial-banners__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-banner-card {
    position: relative;
    min-height: 285px;
    border-radius: 28px;
    overflow: hidden;
    padding: 30px;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.16);
    isolation: isolate;
}

.home-banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: inherit;
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

.home-banner-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(11, 26, 58, 0.10) 0%, rgba(11, 26, 58, 0.60) 48%, rgba(11, 26, 58, 0.94) 100%);
}

.home-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 62px rgba(15, 23, 42, 0.22);
}

.home-banner-card:hover::before {
    transform: scale(1.07);
}

.home-banner-card__content {
    width: 100%;
    max-width: 420px;
}

.home-banner-card__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-weight: 800;
}

.home-banner-card h2 {
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.12;
    margin: 0 0 10px;
    color: var(--white);
}

.home-banner-card p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.55;
    font-size: 14px;
    margin: 0 0 18px;
}

.home-banner-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 40px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: var(--white) !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.home-banner-card__btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .home-commercial-banners {
        padding-left: 5%;
        padding-right: 5%;
    }

    .home-commercial-banners__grid {
        gap: 16px;
    }

    .home-banner-card {
        min-height: 260px;
        padding: 24px;
    }
}

@media (max-width: 900px) {
    .home-commercial-banners__grid {
        grid-template-columns: 1fr;
    }

    .home-banner-card {
        min-height: 230px;
    }
}

@media (max-width: 768px) {
    .home-hero .btn-orange {
        padding: 11px 22px !important;
        min-height: 42px;
        font-size: 12px !important;
    }

    .home-commercial-banners {
        margin-top: -28px;
        padding-left: 4%;
        padding-right: 4%;
    }

    .home-banner-card {
        min-height: 220px;
        border-radius: 22px;
        padding: 22px;
    }

    .home-banner-card h2 {
        font-size: 1.42rem;
    }
}

/* =========================================================
   AJUSTE FINAL - BOTÃO DO HERO DA HOME MAIS DISCRETO
   ========================================================= */
.home-hero {
    align-items: center !important;
}

.home-hero > .btn-orange,
.home-hero a.btn-orange {
    width: auto !important;
    max-width: max-content !important;
    min-width: 0 !important;
    align-self: center !important;
    flex: 0 0 auto !important;
    padding: 11px 26px !important;
    min-height: 42px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14) !important;
}

@media (max-width: 768px) {
    .home-hero > .btn-orange,
    .home-hero a.btn-orange {
        padding: 10px 22px !important;
        min-height: 40px !important;
        font-size: 12px !important;
    }
}

/* =========================================================
   FASE 1 B2B - LOGIN, CADASTRO, ÁREA DO CLIENTE E ADMIN
   ========================================================= */
.auth-page {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

.auth-nav {
    justify-self: start;
}

.auth-wrapper {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 5%;
}

.auth-wrapper-wide {
    align-items: flex-start;
}

.auth-card,
.checkout-card {
    width: 100%;
    max-width: 520px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.auth-wrapper-wide .auth-card {
    max-width: 980px;
}

.auth-kicker {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff7ed;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px;
}

.auth-card h1,
.checkout-card h1 {
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 12px;
}

.auth-card p,
.checkout-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.auth-form {
    display: grid;
    gap: 12px;
}

.auth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.auth-form label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.auth-form input,
.auth-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    outline: none;
    background: #fff;
}

.auth-form input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.auth-radio-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8fafc;
}

.auth-radio-row label {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.auth-radio-row input {
    width: auto;
}

.full-span {
    grid-column: 1 / -1;
}

.form-section-title {
    color: var(--primary);
    font-size: 18px;
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.auth-submit {
    margin-top: 10px;
    width: auto !important;
    justify-self: start;
    padding: 12px 24px !important;
    font-size: 13px !important;
    border-radius: 14px !important;
}

.auth-message {
    display: none;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
}

.auth-message.info { display: block; background: #eff6ff; color: #1d4ed8; }
.auth-message.success { display: block; background: #ecfdf5; color: #047857; }
.auth-message.error { display: block; background: #fef2f2; color: #b91c1c; }

.auth-footer-text {
    margin-top: 18px;
    font-size: 14px;
}

.auth-footer-text a {
    color: var(--orange-dark);
    font-weight: 800;
}

.account-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    padding: 34px 6% 50px;
    min-height: calc(100vh - var(--header-height));
}

.checkout-layout {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.checkout-card {
    max-width: 760px;
}

.account-sidebar {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.account-sidebar h3 {
    color: var(--primary);
    margin-bottom: 18px;
}

.account-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.account-sidebar a:hover,
.account-sidebar a.active {
    background: #f8fafc;
    color: var(--primary);
}

.account-content {
    display: grid;
    gap: 22px;
}

.account-hero,
.account-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.account-hero span {
    color: var(--orange-dark);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.account-hero h1 {
    color: var(--primary);
    margin: 8px 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.account-hero p,
.account-card p {
    color: var(--muted);
    line-height: 1.7;
}

.account-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.account-card h2 {
    color: var(--primary);
    font-size: 22px;
}

.btn-small-outline {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
}

.btn-small-outline:hover {
    border-color: var(--orange);
    color: var(--orange-dark);
}

.orders-table {
    display: grid;
    gap: 10px;
}

.order-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8fafc;
    font-size: 13px;
}

.order-row strong {
    color: var(--primary);
}

.order-row span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

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

.admin-kpi {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.admin-kpi span {
    display: block;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 8px;
}

.admin-kpi strong {
    color: var(--primary);
    font-size: 34px;
}

.checkout-steps {
    display: grid;
    gap: 12px;
    margin: 22px 0 0 18px;
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 860px) {
    .auth-grid,
    .account-layout,
    .admin-kpis,
    .order-row {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

    .auth-card,
    .checkout-card {
        padding: 24px;
    }
}

.account-trigger {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.account-trigger:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-1px);
}

/* =========================================================
   AJUSTES AUTH - LINKS, ALERTAS E CONFIRMAÇÃO DE E-MAIL
   ========================================================= */
.auth-link-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 18px;
    font-size: 14px;
}

.auth-link-row a,
.auth-footer-text a {
    color: var(--orange-dark);
    font-weight: 800;
    text-decoration: none;
}

.auth-link-row a:hover,
.auth-footer-text a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.auth-feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(11, 26, 58, 0.62);
    backdrop-filter: blur(8px);
}

.auth-feedback-modal.active {
    display: flex;
}

.auth-feedback-card {
    width: min(100%, 440px);
    background: var(--white);
    border-radius: 28px;
    padding: 34px;
    text-align: center;
    box-shadow: 0 28px 80px rgba(2, 6, 23, 0.28);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.auth-feedback-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.auth-feedback-card h2 {
    color: var(--primary);
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.auth-feedback-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.auth-feedback-button {
    padding: 12px 22px !important;
    font-size: 13px !important;
    border-radius: 14px !important;
}

@media (max-width: 640px) {
    .auth-link-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .auth-feedback-card {
        padding: 28px 22px;
    }
}

/* Área do cliente - alteração de senha */
.account-password-form {
    max-width: 520px;
    display: grid;
    gap: 10px;
}

.account-password-form .auth-submit {
    margin-top: 8px;
}

/* =========================================================
   FASE 2 - SESSÃO, ÁREA DO CLIENTE E ADMIN
   ========================================================= */
.account-session {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.account-session__button,
.account-session__logout {
    height: 42px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    cursor: pointer;
}

.account-session__button {
    gap: 8px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 800;
}

.account-session__logout {
    width: 42px;
    font-size: 15px;
}

.account-session__button:hover,
.account-session__logout:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-1px);
}

.customer-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.customer-info-grid div {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
}

.customer-info-grid span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.customer-info-grid strong {
    color: var(--primary);
    font-size: 14px;
    word-break: break-word;
}

.credit-help-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 18px;
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.credit-help-box i {
    margin-top: 4px;
}

.credit-help-box p {
    color: #1e40af;
    margin: 0;
}

.admin-list {
    display: grid;
    gap: 10px;
}

.admin-list-row {
    display: grid;
    grid-template-columns: 1.5fr .7fr .8fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8fafc;
    font-size: 13px;
}

.admin-list-row strong {
    display: block;
    color: var(--primary);
}

.admin-list-row span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

@media (max-width: 860px) {
    .customer-info-grid,
    .admin-list-row {
        grid-template-columns: 1fr;
    }

    .account-session__button span {
        display: none;
    }

    .account-session__button {
        width: 42px;
        padding: 0;
    }
}

/* =========================================================
   CHECKOUT ECOMMERCE B2B
   ========================================================= */
.cart-ecommerce-note {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 18px;
}

.cart-ecommerce-note strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

.cart-ecommerce-note p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.checkout-page {
    padding: 28px 8% 60px;
    min-height: 70vh;
}

.checkout-hero-card,
.checkout-card,
.checkout-summary-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.checkout-hero-card {
    padding: 34px;
    margin-bottom: 18px;
}

.checkout-hero-card h1 {
    color: var(--primary);
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin: 8px 0 10px;
}

.checkout-hero-card p {
    color: var(--muted);
    max-width: 760px;
    line-height: 1.7;
}

.checkout-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.checkout-step-indicator {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.checkout-step-indicator span {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: var(--primary);
    font-weight: 800;
}

.checkout-step-indicator.active {
    border-color: rgba(245, 158, 11, .45);
    color: var(--primary);
}

.checkout-step-indicator.active span {
    background: var(--orange);
    color: var(--white);
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.checkout-main {
    display: grid;
    gap: 18px;
}

.checkout-card,
.checkout-summary-card {
    padding: 24px;
}

.checkout-card-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkout-step-number {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.checkout-card h2,
.checkout-summary-card h2 {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.checkout-card p {
    color: var(--muted);
    line-height: 1.6;
}

.delivery-choice,
.payment-options {
    display: grid;
    gap: 12px;
}

.choice-card,
.payment-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.choice-card.active,
.payment-card.active {
    border-color: var(--orange);
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.12);
}

.choice-card input,
.payment-card input {
    accent-color: var(--orange);
}

.choice-card span,
.payment-card span {
    display: grid;
    gap: 4px;
}

.choice-card small,
.payment-card small {
    color: var(--muted);
    line-height: 1.5;
}

.payment-card i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #f8fafc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.checkout-address-form {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.form-row.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkout-address-form label,
.checkout-notes {
    display: grid;
    gap: 7px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.checkout-address-form input,
.checkout-notes textarea {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}

.checkout-next {
    margin-top: 20px;
}

.checkout-actions-row {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
    flex-wrap: wrap;
}

.shipping-rule-box {
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    border-radius: 18px;
    padding: 18px;
}

.shipping-rule-success strong {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.freight-warning {
    color: #b45309 !important;
    margin-top: 8px;
}

.freight-ok {
    color: #15803d !important;
    margin-top: 8px;
}

.checkout-summary-card {
    position: sticky;
    top: calc(var(--header-height) + 18px);
}

.checkout-summary-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.checkout-summary-item img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #f8fafc;
}

.checkout-summary-item div {
    display: grid;
    gap: 3px;
}

.checkout-summary-item strong {
    color: var(--primary);
    font-size: 13px;
    line-height: 1.35;
}

.checkout-summary-item span {
    color: var(--muted);
    font-size: 12px;
}

.checkout-totals {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.checkout-totals div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
}

.checkout-totals strong {
    color: var(--primary);
}

.checkout-totals .grand {
    border-top: 2px solid var(--primary);
    padding-top: 12px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
}

.checkout-review {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.review-block {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    background: #f8fafc;
}

.review-block strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

.review-block p {
    color: var(--text);
}

.payment-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 5000;
}

.payment-modal-overlay.active {
    display: flex;
}

.payment-modal-card {
    position: relative;
    width: min(520px, 100%);
    background: var(--white);
    border-radius: 28px;
    padding: 34px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(2, 6, 23, .3);
}

.payment-modal-close {
    position: absolute;
    right: 18px;
    top: 14px;
    border: none;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
    color: var(--muted);
}

.payment-state-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: rgba(37, 211, 102, .12);
    color: #15803d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.payment-state-icon.analysis {
    background: rgba(245, 158, 11, .14);
    color: var(--orange-dark);
}

.payment-modal-card h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.payment-modal-card p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 12px;
}

.payment-placeholder {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    margin: 14px 0;
    text-align: left;
}

@media (max-width: 992px) {
    .checkout-page {
        padding-left: 5%;
        padding-right: 5%;
    }

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

    .checkout-summary-card {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .checkout-page {
        padding-left: 4%;
        padding-right: 4%;
    }

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

    .form-row.two,
    .checkout-review {
        grid-template-columns: 1fr;
    }

    .checkout-hero-card,
    .checkout-card,
    .checkout-summary-card,
    .payment-modal-card {
        padding: 20px;
    }

    .checkout-actions-row .btn-det,
    .checkout-actions-row .btn-orange {
        width: 100% !important;
    }
}

/* =========================================================
   LOCALIZAÇÃO / CEP NA ENTRADA DA LOJA
   ========================================================= */
.delivery-location-pill {
    min-height: 42px;
    max-width: 210px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    cursor: pointer;
    text-align: left;
    flex-shrink: 0;
}

.delivery-location-pill:hover {
    background: rgba(255,255,255,.16);
    transform: translateY(-1px);
}

.delivery-location-pill i {
    color: var(--orange);
    font-size: 15px;
}

.delivery-location-pill span,
.delivery-location-pill strong {
    display: block;
    line-height: 1.1;
}

.delivery-location-pill span {
    font-size: 10px;
    opacity: .82;
    font-weight: 600;
}

.delivery-location-pill strong {
    font-size: 11px;
    max-width: 132px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.delivery-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .70);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 5200;
}

.delivery-modal-overlay.active {
    display: flex;
}

.delivery-modal-card {
    position: relative;
    width: min(520px, 100%);
    background: var(--white);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, .28);
}

.delivery-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 30px;
    cursor: pointer;
}

.delivery-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: rgba(245, 158, 11, .14);
    color: var(--orange-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 18px;
}

.delivery-modal-card h2 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 28px;
}

.delivery-modal-card p {
    color: var(--muted);
    line-height: 1.65;
}

.delivery-cep-form {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.delivery-cep-form label {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.delivery-cep-form > div {
    display: flex;
    gap: 10px;
}

.delivery-cep-form input {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    color: var(--text);
    outline: none;
}

.delivery-cep-form input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, .12);
}

.delivery-geo-button,
.delivery-secondary-button {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #f8fafc;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
}

.delivery-geo-button:hover,
.delivery-secondary-button:hover {
    border-color: var(--orange);
    color: var(--orange-dark);
}

.delivery-geo-button i {
    margin-right: 8px;
    color: var(--orange-dark);
}

.delivery-modal-message {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
}

.delivery-modal-message.info {
    background: #eff6ff;
    color: #1d4ed8;
}

.delivery-modal-message.success {
    background: #ecfdf5;
    color: #047857;
}

.delivery-modal-message.error {
    background: #fef2f2;
    color: #b91c1c;
}

.delivery-rule-preview {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8fafc;
}

.delivery-rule-preview p {
    margin: 3px 0;
    font-size: 13px;
}

.delivery-warning {
    color: #b45309 !important;
    font-weight: 700;
}

@media (max-width: 992px) {
    .delivery-location-pill {
        max-width: 160px;
        padding: 7px 10px;
    }

    .delivery-location-pill strong {
        max-width: 92px;
    }
}

@media (max-width: 768px) {
    .delivery-location-pill {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
    }

    .delivery-location-pill span,
    .delivery-location-pill strong {
        display: none;
    }

    .delivery-modal-card {
        padding: 24px;
        border-radius: 24px;
    }

    .delivery-cep-form > div {
        flex-direction: column;
    }

    .delivery-cep-form .btn-orange {
        width: 100% !important;
    }
}

/* Ajustes do fluxo de cotação B2B */
.price-tag.login-required {
    color: var(--muted);
    font-size: 13px;
}
.shipping-eligibility {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 4px 10px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 14px;
    margin: 14px 0;
    border: 1px solid var(--line);
    background: #f8fafc;
}
.shipping-eligibility i {
    grid-row: span 2;
    font-size: 20px;
    margin-top: 2px;
}
.shipping-eligibility strong {
    color: var(--primary);
}
.shipping-eligibility span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}
.shipping-eligibility.success {
    border-color: rgba(34, 197, 94, .35);
    background: rgba(34, 197, 94, .07);
}
.shipping-eligibility.success i {
    color: #16a34a;
}
.shipping-eligibility.warning {
    border-color: rgba(245, 158, 11, .35);
    background: rgba(245, 158, 11, .08);
}
.shipping-eligibility.warning i {
    color: var(--orange-dark);
}


/* Ajustes extras de cadastro e carrinho */
.auth-stepper { display:flex; gap:12px; margin: 10px 0 24px; flex-wrap:wrap; }
.auth-stepper__item { border:1px solid #d8e0ee; background:#fff; color:#0d0d0d; border-radius:999px; padding:12px 18px; font:600 0.92rem/1.2 'Poppins', sans-serif; display:flex; align-items:center; gap:10px; cursor:pointer; }
.auth-stepper__item span { width:28px; height:28px; border-radius:50%; background:#eef2f9; display:grid; place-items:center; }
.auth-stepper__item.active { background:#fff7eb; border-color:#c9a84c; color:#0b1f52; }
.auth-stepper__item.active span { background:#c9a84c; color:#fff; }
.signup-step { display:none; }
.signup-step.active { display:grid; grid-template-columns: inherit; gap: inherit; }
.auth-step-actions { display:flex; gap:12px; justify-content:flex-end; margin-top:8px; }
.auth-step-actions .btn-det, .auth-step-actions .btn-orange { min-width:160px; }
.cart-total-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; font-size:1rem; }
.cart-minimum-progress { background:#f8fafc; border:1px solid #e2e8f0; border-radius:18px; padding:14px; }
.cart-minimum-progress__label { display:flex; justify-content:space-between; gap:12px; font-size:0.85rem; color:#475569; margin-bottom:10px; }
.cart-minimum-progress__label strong { color:#0b1f52; }
.cart-minimum-progress__bar { height:10px; border-radius:999px; background:#e2e8f0; overflow:hidden; }
.cart-minimum-progress__bar span { display:block; height:100%; border-radius:999px; background:#c9a84c; }
.cart-minimum-progress__text { margin:10px 0 0; font-size:0.85rem; color:#475569; line-height:1.4; }
@media (max-width: 768px) { .auth-step-actions { flex-direction:column; } .auth-step-actions .btn-det, .auth-step-actions .btn-orange { width:100%; } }

/* ============================================================
   NOIR & GOLD — Sharp Editorial Modernization Layer
   Black + warm cream + gold accents. Sharp corners. Big type.
   Phosphor icons. Minimal shadows. Refined hover.
   ============================================================ */

html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01","cv11","kern";
    letter-spacing: -0.005em;
    color: var(--text);
}

/* Phosphor icon sizing — match old <i> baseline */
i.ph,
[class^="ph ph-"],
[class*=" ph ph-"] {
    font-style: normal;
    font-size: 1.05em;
    line-height: 1;
    vertical-align: -0.08em;
}

/* Selection */
::selection { background: var(--gold); color: var(--primary); }

/* ───────── HEADER — black editorial bar ───────── */
header {
    background: #0d0d0d !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid #1f1f1f !important;
    box-shadow: none !important;
}
header .logo img {
    filter: brightness(0) invert(1);
}
.main-nav a {
    position: relative;
    font-weight: 500;
    color: #f3efe4 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    padding: 10px 14px;
    transition: color .2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold) !important; }
.main-nav a::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.menu-toggle { color: #f3efe4 !important; }

.header-tools .cart-trigger,
.header-tools .search-trigger,
.header-tools .account-trigger {
    color: #f3efe4 !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color .2s, color .2s, background .2s;
}
.header-tools .cart-trigger:hover,
.header-tools .search-trigger:hover,
.header-tools .account-trigger:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cart-badge {
    border: 2px solid #0d0d0d !important;
}

/* Dropdown menu inside dark header */
.nav-dropdown__menu {
    background: #0d0d0d !important;
    border: 1px solid #1f1f1f !important;
}
.nav-dropdown__menu a {
    color: #f3efe4 !important;
}
.nav-dropdown__menu a:hover {
    color: var(--gold) !important;
    background: rgba(201,168,76,0.08) !important;
}

/* ───────── BUTTONS — sharp, gold ink ───────── */
.btn-orange,
.btn-order,
button.btn-orange,
a.btn-orange {
    background: var(--primary) !important;
    color: #fff !important;
    border: 1px solid var(--primary) !important;
    border-radius: var(--radius-sm) !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: none !important;
    transition: background .25s, color .25s, border-color .25s, transform .25s;
    position: relative;
    overflow: hidden;
}
.btn-orange:hover,
.btn-order:hover {
    background: var(--gold) !important;
    color: var(--primary) !important;
    border-color: var(--gold) !important;
    transform: translateY(-1px);
}
.btn-orange::before { content: none !important; }

/* Secondary / ghost CTAs */
.btn-det, .btn-secondary {
    background: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    border-radius: var(--radius-sm) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600 !important;
    transition: background .2s, color .2s;
}
.btn-det:hover, .btn-secondary:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

/* CART badge */
.cart-badge {
    background: var(--gold) !important;
    color: var(--primary) !important;
    border: 2px solid var(--bg);
    box-shadow: none;
    font-weight: 700;
}

/* ───────── HERO — editorial black ───────── */
.hero, .home-hero {
    position: relative;
    background:
        radial-gradient(900px 500px at 80% 20%, rgba(201,168,76,0.18), transparent 60%),
        linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%) !important;
    color: #fff !important;
    overflow: hidden;
    border-radius: 0 !important;
    border-bottom: 1px solid #2a2a2a;
}
.hero::before, .home-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 1px 56px;
    mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
    pointer-events: none;
}
.hero h1, .home-hero h1 {
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
}
.hero h1 strong, .home-hero h1 strong { color: var(--gold); font-weight: 700; }

/* ───────── Kicker / eyebrow ───────── */
.home-kicker, .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent !important;
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 0 !important;
}
.home-kicker::before, .eyebrow::before {
    content: "";
    width: 28px; height: 1px; background: var(--gold);
    display: inline-block;
}

/* ───────── CARDS — sharp, restrained ───────── */
.product-card,
.home-banner-card,
.home-category-card,
.home-featured-card,
.modal-content,
.cart-item,
.checkout-card,
.account-card {
    border-radius: var(--radius-sm) !important;
    background: var(--bg-2);
    border: 1px solid var(--line) !important;
    box-shadow: none;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}
.product-card:hover,
.home-banner-card:hover,
.home-category-card:hover,
.home-featured-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Banner overlay */
.home-banner-card::after {
    background: linear-gradient(180deg, rgba(13,13,13,0) 0%, rgba(13,13,13,0.88) 100%) !important;
}
.home-banner-card__kicker {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 0;
    padding: 6px 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
}
.home-banner-card__btn {
    background: var(--gold) !important;
    color: var(--primary) !important;
    border-radius: var(--radius-sm);
    padding: 11px 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

/* Category pills */
.home-category-pill {
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-sm) !important;
    background: var(--bg-2) !important;
    box-shadow: none;
    transition: transform .3s, border-color .3s, background .3s;
}
.home-category-pill:hover {
    transform: translateY(-2px);
    border-color: var(--gold) !important;
}
.home-category-pill__icon {
    background: var(--primary) !important;
    color: var(--gold) !important;
    border-radius: var(--radius-sm) !important;
}

/* ───────── FOOTER ───────── */
.main-footer {
    background: #0d0d0d !important;
    color: #b5b5b0 !important;
    border-top: 1px solid #1f1f1f;
}
.main-footer h4 {
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 600;
}
.main-footer a { color: #b5b5b0 !important; transition: color .2s; }
.main-footer a:hover { color: var(--gold) !important; }
.social-links a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    transition: .25s;
}
.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary) !important;
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid #1f1f1f;
    color: rgba(181,181,176,0.55);
    letter-spacing: 0.04em;
    font-size: 12px;
}

/* ───────── WhatsApp float ───────── */
.whatsapp-float {
    background: var(--primary) !important;
    color: var(--gold) !important;
    box-shadow: 0 14px 30px -10px rgba(13,13,13,0.45) !important;
    border-radius: 999px !important;
    border: 1px solid var(--gold);
    transition: background .25s, color .25s, transform .25s;
}
.whatsapp-float:hover {
    background: var(--gold) !important;
    color: var(--primary) !important;
    transform: translateY(-3px);
}

/* ───────── Inputs ───────── */
input[type="text"], input[type="email"], input[type="password"],
input[type="tel"], input[type="number"], textarea, select {
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--line) !important;
    background: var(--bg-2);
    transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.18) !important;
}

/* ───────── Sidebar cart ───────── */
.sidebar {
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px -28px rgba(13,13,13,0.25);
}
.sidebar-header {
    background: var(--primary) !important;
    color: #fff !important;
    border-bottom: 1px solid #1f1f1f;
}
.sidebar-header h4 {
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 14px;
}
.cart-clear-btn, .sidebar-close { color: var(--gold) !important; }

/* ───────── Search overlay ───────── */
.search-modal {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}

/* ───────── Headings polish ───────── */
h1, h2, h3 {
    letter-spacing: -0.025em;
    color: var(--primary);
    font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.02; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.1; }

/* ───────── Fade in ───────── */
@keyframes ts-fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}
section { animation: ts-fade-up .55s cubic-bezier(.2,.7,.2,1) both; }
section:nth-of-type(1) { animation-delay: .02s; }
section:nth-of-type(2) { animation-delay: .08s; }
section:nth-of-type(3) { animation-delay: .14s; }

/* ───────── Scrollbar ───────── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #d8d4c5; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ───────── Auth pages — editorial ───────── */
.auth-page { background: var(--bg); }
.auth-card {
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--line) !important;
    box-shadow: var(--shadow-md);
    background: var(--bg-2);
}
.auth-kicker {
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    font-weight: 600;
}

/* ───────── Filters / chips ───────── */
.filters button, .filters .chip {
    border-radius: var(--radius-sm) !important;
    border: 1px solid var(--line) !important;
    background: var(--bg-2) !important;
    color: var(--primary) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    font-weight: 600;
    transition: .2s;
}
.filters button:hover, .filters .chip:hover {
    border-color: var(--primary) !important;
}
.filters button.active, .filters .chip.active {
    background: var(--primary) !important;
    color: var(--gold) !important;
    border-color: var(--primary) !important;
}

/* Admin sidebar gold accent */
.sidebar .brand-mark { background: var(--gold) !important; color: var(--primary) !important; border-radius: var(--radius-sm) !important; }
.sidebar nav a.active, .sidebar nav a:hover { background: rgba(201,168,76,0.15) !important; color: var(--gold) !important; }


/* =========================================================
   PADRÃO FINAL NOIR & GOLD — APLICADO GLOBALMENTE
   Mantém funcionalidades e normaliza visual em todas as páginas.
   ========================================================= */
:root {
    --primary: #0d0d0d !important;
    --primary-2: #1a1a1a !important;
    --primary-3: #2a2a2a !important;
    --accent: #c9a84c !important;
    --gold: #c9a84c !important;
    --gold-soft: #f0d78c !important;
    --orange: #c9a84c !important;
    --orange-dark: #a8893a !important;
    --bg: #fafaf7 !important;
    --bg-2: #ffffff !important;
    --text: #0d0d0d !important;
    --muted: #6b6b6b !important;
    --line: #e8e6df !important;
    --radius-sm: 4px !important;
    --radius-md: 6px !important;
    --radius-lg: 10px !important;
}

body { background: var(--bg) !important; color: var(--text) !important; }
header, .sidebar-header, .main-footer { background: var(--primary) !important; }
.main-nav a:hover, .footer-section h4, .social-links a:hover { color: var(--gold) !important; }

/* Botões principais quadrados no padrão novo */
.btn-orange,
.btn-highlight,
.btn-add,
.btn-order,
.auth-submit,
.checkout-next,
.payment-modal-btn,
.search-modal__bar button,
.delivery-cep-form button,
button[type="submit"],
button.btn-orange,
a.btn-orange {
    background: var(--primary) !important;
    color: #ffffff !important;
    border: 1px solid var(--primary) !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.btn-orange:hover,
.btn-highlight:hover,
.btn-add:hover,
.btn-order:hover,
.auth-submit:hover,
.checkout-next:hover,
.payment-modal-btn:hover,
.search-modal__bar button:hover,
.delivery-cep-form button:hover,
button[type="submit"]:hover,
button.btn-orange:hover,
a.btn-orange:hover {
    background: var(--gold) !important;
    color: var(--primary) !important;
    border-color: var(--gold) !important;
    transform: translateY(-1px);
}

/* Botões secundários */
.btn-det,
.btn-ghost-light,
.delivery-secondary-button,
.checkout-pdf-option,
.cart-clear-btn,
.filter-scroll-btn,
.carousel-btn {
    border-radius: 4px !important;
    background: #f3f1ea !important;
    color: var(--primary) !important;
    border: 1px solid var(--line) !important;
    box-shadow: none !important;
}

.btn-det:hover,
.btn-ghost-light:hover,
.delivery-secondary-button:hover,
.checkout-pdf-option:hover,
.cart-clear-btn:hover,
.filter-scroll-btn:hover,
.carousel-btn:hover {
    background: #e8e4d8 !important;
    color: var(--primary) !important;
    border-color: #d7cfbd !important;
}

/* Controles e cards com cantos mais retos */
.card,
.home-banner-card,
.hotel-mini-banner,
.auth-card,
.checkout-card,
.checkout-summary-card,
.modal-content,
.search-modal,
.delivery-modal-card,
.payment-modal-card,
.filter-btn,
.filter-btn__icon,
.home-category-card,
.home-category-card__icon,
.account-session__button,
.account-session__logout,
.delivery-location-pill,
.nav-dropdown__menu,
.qty-inline-control,
.qty-inline-btn,
.qty-btn,
.cart-item-thumb,
.client-form input,
.client-form textarea,
.auth-form input,
.auth-form select,
.auth-form textarea,
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    border-radius: 6px !important;
}

/* Ícones do topo ficam quadrados suaves, não totalmente redondos */
.cart-trigger,
.menu-toggle,
.search-trigger,
.whatsapp-float {
    border-radius: 6px !important;
}

/* Estados ativos e detalhes em dourado/cinza */
.filter-btn.active,
.carousel-dot.active,
.auth-stepper__item.active span,
.cart-badge,
.swiper-pagination-bullet-active,
.cart-minimum-progress__bar span {
    background: var(--gold) !important;
    color: var(--primary) !important;
}

.filter-btn:hover,
.nav-dropdown__menu a:hover,
.account-session__button:hover,
.delivery-location-pill:hover {
    border-color: var(--gold) !important;
    color: var(--primary) !important;
    background: #f3efe4 !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .18) !important;
    outline: none !important;
}

.price-tag,
.hotel-mini-banner span,
.home-banner-card__kicker,
.hero-kicker,
.hotel-category-kicker,
.auth-kicker {
    color: var(--gold) !important;
}

.card:hover,
.home-banner-card:hover,
.hotel-mini-banner:hover {
    box-shadow: 0 18px 42px rgba(13, 13, 13, .12) !important;
}


/* =========================================================
   AJUSTE FINAL — BOTÕES, DROPDOWN, LOGO E PEDIDO MÍNIMO
   Referência: botões quadrados, preto/dourado, hover da lupa.
   ========================================================= */
.logo img,
.footer-logo,
.brand-logo {
    filter: none !important;
    mix-blend-mode: normal !important;
    background: transparent !important;
}

button,
.btn-orange,
.btn-highlight,
.btn-add,
.btn-order,
.auth-submit,
.checkout-next,
.payment-modal-btn,
.search-modal__bar button,
.delivery-cep-form button,
button.btn-orange,
a.btn-orange {
    border-radius: 4px !important;
    box-shadow: none !important;
}

.btn-orange,
.btn-highlight,
.btn-add,
.btn-order,
.auth-submit,
.checkout-next,
.payment-modal-btn,
.delivery-cep-form button,
button.btn-orange,
a.btn-orange {
    background: #0d0d0d !important;
    color: #ffffff !important;
    border: 1px solid #0d0d0d !important;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.btn-orange:hover,
.btn-highlight:hover,
.btn-add:hover,
.btn-order:hover,
.auth-submit:hover,
.checkout-next:hover,
.payment-modal-btn:hover,
.delivery-cep-form button:hover,
button.btn-orange:hover,
a.btn-orange:hover {
    background: #161616 !important;
    color: #c9a84c !important;
    border-color: #c9a84c !important;
    transform: none !important;
}

.btn-det,
.btn-secondary,
.btn-ghost-light,
.delivery-secondary-button,
.checkout-pdf-option,
.filter-scroll-btn,
.carousel-btn {
    border-radius: 4px !important;
    background: transparent !important;
    color: #0d0d0d !important;
    border: 1px solid #0d0d0d !important;
    box-shadow: none !important;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.btn-det:hover,
.btn-secondary:hover,
.btn-ghost-light:hover,
.delivery-secondary-button:hover,
.checkout-pdf-option:hover,
.filter-scroll-btn:hover,
.carousel-btn:hover {
    background: #f1f1ee !important;
    color: #0d0d0d !important;
    border-color: #c9a84c !important;
}

.header-tools .cart-trigger,
.header-tools .search-trigger,
.header-tools .account-trigger,
.account-session__button,
.account-session__logout,
.delivery-location-pill {
    border-radius: 4px !important;
    background: transparent !important;
    color: #f5f5f2 !important;
    border: 1px solid rgba(201,168,76,.42) !important;
    box-shadow: none !important;
}

.header-tools .cart-trigger:hover,
.header-tools .search-trigger:hover,
.header-tools .account-trigger:hover,
.account-session__button:hover,
.account-session__logout:hover,
.delivery-location-pill:hover {
    background: #161616 !important;
    color: #c9a84c !important;
    border-color: #c9a84c !important;
}

.nav-dropdown__menu {
    background: #0d0d0d !important;
    border: 1px solid rgba(201,168,76,.24) !important;
    box-shadow: 0 18px 38px rgba(0,0,0,.22) !important;
}

.nav-dropdown__menu a {
    background: transparent !important;
    color: #f5f5f2 !important;
    border-bottom: 1px solid transparent !important;
}

.nav-dropdown__menu a:hover {
    background: transparent !important;
    color: #c9a84c !important;
    border-bottom-color: #c9a84c !important;
}

.sidebar-footer .btn-order:disabled,
.sidebar-footer .btn-order.is-disabled {
    opacity: .48 !important;
    cursor: not-allowed !important;
    background: #2f2f2f !important;
    border-color: #2f2f2f !important;
    color: #a7a7a0 !important;
}

.sidebar-footer .btn-order:disabled:hover,
.sidebar-footer .btn-order.is-disabled:hover {
    background: #2f2f2f !important;
    border-color: #2f2f2f !important;
    color: #a7a7a0 !important;
}

/* =========================================================
   PADRONIZAÇÃO FINAL — LINE HOTEL + INSTITUCIONAL
   Mantém o visual Noir & Gold em todas as áreas institucionais.
   ========================================================= */
body[data-page="hotelaria"],
body[data-page="institucional"] {
    background: var(--bg) !important;
}

body[data-page="hotelaria"] .line-hotel-hero,
.line-hotel-hero {
    background:
        radial-gradient(circle at 82% 20%, rgba(201,168,76,.18), transparent 32%),
        linear-gradient(135deg, rgba(13,13,13,.94), rgba(13,13,13,.84)),
        url('https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat !important;
    border-bottom: 1px solid rgba(201,168,76,.18) !important;
}

body[data-page="institucional"] .institutional-hero,
.institutional-hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(201,168,76,.16), transparent 34%),
        linear-gradient(135deg, rgba(13,13,13,.95), rgba(13,13,13,.82)),
        url('https://i.postimg.cc/d1NhRMGr/Hero-secction-banner.jpg') center/cover no-repeat !important;
    border-bottom: 1px solid rgba(201,168,76,.18) !important;
}

body[data-page="hotelaria"] .hero-kicker,
body[data-page="hotelaria"] .hotel-category-kicker,
body[data-page="institucional"] .hero-kicker,
body[data-page="institucional"] .home-kicker {
    border-radius: 4px !important;
    background: rgba(201,168,76,.10) !important;
    border: 1px solid rgba(201,168,76,.42) !important;
    color: var(--gold) !important;
}

.line-hotel-banners,
body[data-page="institucional"] .section {
    background: transparent !important;
}

.hotel-mini-banner,
body[data-page="institucional"] .card,
body[data-page="institucional"] .clients-container,
body[data-page="institucional"] .factory-swiper-wrap {
    background: var(--bg-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: 6px !important;
    box-shadow: 0 16px 36px rgba(13,13,13,.08) !important;
}

.hotel-mini-banner:hover,
body[data-page="institucional"] .card:hover,
body[data-page="institucional"] .factory-swiper-wrap:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(201,168,76,.48) !important;
    box-shadow: 0 20px 44px rgba(13,13,13,.12) !important;
}

.hotel-mini-banner span,
body[data-page="institucional"] .section h2,
body[data-page="institucional"] .card h3 {
    color: var(--primary) !important;
}

.hotel-mini-banner span::after,
body[data-page="institucional"] .card h3::after {
    content: '';
    display: block;
    width: 42px;
    height: 1px;
    background: var(--gold);
    margin-top: 10px;
}

.hotel-mini-banner h3,
.line-hotel-category-section .section-header h2,
.hotel-category-head h2,
body[data-page="institucional"] .section h2 {
    color: var(--primary) !important;
    letter-spacing: -.03em !important;
}

.hotel-mini-banner p,
.hotel-category-head p,
.line-hotel-hero p,
.institutional-hero p,
body[data-page="institucional"] .section p,
body[data-page="institucional"] .card p {
    color: var(--muted) !important;
}

.line-hotel-hero p,
.institutional-hero p,
.line-hotel-hero h1,
.institutional-hero h1 {
    color: var(--white) !important;
}

.line-hotel-filters,
body[data-page="hotelaria"] .filters {
    background: rgba(250,250,247,.92) !important;
    border-top: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
}

body[data-page="institucional"] #revendedor {
    background:
        radial-gradient(circle at 80% 20%, rgba(201,168,76,.20), transparent 34%),
        #0d0d0d !important;
    border-top: 1px solid rgba(201,168,76,.20) !important;
    border-bottom: 1px solid rgba(201,168,76,.20) !important;
}

body[data-page="institucional"] #revendedor h2,
body[data-page="institucional"] #revendedor p {
    color: #ffffff !important;
}

body[data-page="institucional"] .clients-container img {
    filter: grayscale(.1) contrast(1.02) !important;
}

body[data-page="institucional"] .swiper-button-prev,
body[data-page="institucional"] .swiper-button-next {
    color: var(--gold) !important;
}

body[data-page="institucional"] .swiper-pagination-bullet-active {
    background: var(--gold) !important;
}


/* Ajustes cards/cadastro - 2026 */
.card { align-items: stretch; }
.card h3,
.card h4 { min-height: 58px; display: flex; align-items: center; justify-content: center; }
.pack-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 22px;
    margin: 2px 0 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.price-tag {
    min-height: 34px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: auto !important;
    margin-bottom: 14px !important;
    line-height: 1.2;
}
.btn-group { margin-top: 0 !important; }
.auth-required-note {
    margin: 8px 0 18px;
    color: var(--muted);
    font-size: 13px;
}
.auth-required-note span,
.auth-form label span { color: #c9a84c; font-weight: 700; }
.field-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220,38,38,.10) !important;
}
.field-error-message {
    display: block;
    margin-top: 5px;
    color: #dc2626;
    font-size: 11px;
    font-weight: 600;
}
.cnpj-lookup-result { margin-top: 18px; }
.cnpj-result-card {
    border: 1px solid var(--line);
    background: var(--bg-2, #fff);
    padding: 18px;
    border-radius: 14px;
    display: grid;
    gap: 10px;
}
.cnpj-result-card h3 { margin: 0; color: var(--primary); }
.cnpj-result-card p { margin: 0; color: var(--muted); line-height: 1.5; }


/* Cadastro somente PJ e desconto à vista */
.auth-business-only-note {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border: 1px solid var(--line, #e8e6df); background: rgba(201,168,76,.10);
  color: var(--primary, #0d0d0d); border-radius: 10px; font-weight: 600;
}
.discount-row { color: #166534; }
.discount-row strong { color: #166534; }
.payment-card small { line-height: 1.35; }


/* ============================================================
   Categoria no padrão Tira Pedidos V9
   ============================================================ */
.filters {
    padding: 0 8%;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    background: rgba(250,250,247,0.96);
    border-bottom: 1px solid var(--line, #e8e6df);
}
.cat-scroll, .filter-scroll-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 16px 2px;
}
.cat-scroll::-webkit-scrollbar, .filter-scroll-viewport::-webkit-scrollbar { display: none; }
.cat-scroll__group, .filter-scroll-track {
    display: flex;
    gap: 14px;
    width: max-content;
}
.cat-scroll-btn, .filter-scroll-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line, #e8e6df);
    border-radius: 8px;
    background: var(--bg-2, #fff);
    color: var(--text, #0d0d0d);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(13,13,13,.06);
    flex-shrink: 0;
    transition: .2s ease;
}
.cat-scroll-btn:hover, .filter-scroll-btn:hover {
    border-color: var(--gold, #c9a84c);
    color: var(--gold, #c9a84c);
    transform: translateY(-1px);
}
.filters .filter-btn, .filters .filter-btn--chip, .filters .filter-btn--icon {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    background: var(--bg-2, #fff) !important;
    border: 1px solid var(--line, #e8e6df) !important;
    color: var(--text, #0d0d0d) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: auto !important;
}
.filters .filter-btn .filter-btn__icon {
    width: auto;
    height: auto;
    background: transparent !important;
    border: 0;
    color: var(--muted, #6b6b6b);
}
.filters .filter-btn i { font-size: 18px; color: var(--muted, #6b6b6b); transition: color .2s ease; }
.filters .filter-btn:hover { border-color: var(--gold, #c9a84c) !important; color: var(--gold, #c9a84c) !important; transform: translateY(-1px); }
.filters .filter-btn:hover i, .filters .filter-btn:hover .filter-btn__icon { color: var(--gold, #c9a84c) !important; }
.filters .filter-btn.active {
    background: #0d0d0d !important;
    border-color: #0d0d0d !important;
    color: var(--gold, #c9a84c) !important;
    box-shadow: 0 6px 18px rgba(13,13,13,.12);
}
.filters .filter-btn.active i, .filters .filter-btn.active .filter-btn__icon { color: var(--gold, #c9a84c) !important; }
.filters .filter-btn--saldao {
    background: linear-gradient(135deg, #b32d2d 0%, #7a1a1a 100%) !important;
    border-color: #b32d2d !important;
    color: #fff5d6 !important;
    box-shadow: 0 6px 18px rgba(179,45,45,.28);
}
.filters .filter-btn--saldao i, .filters .filter-btn--saldao .filter-btn__icon { color: var(--gold-soft, #f0d78c) !important; }
.filters .filter-btn--saldao.active {
    background: linear-gradient(135deg, #d63a3a 0%, #8a1f1f 100%) !important;
    border-color: var(--gold, #c9a84c) !important;
    color: var(--gold, #c9a84c) !important;
}
@media (max-width: 768px) {
    .filters { padding-left: 4%; padding-right: 4%; gap: 8px; }
    .cat-scroll, .filter-scroll-viewport { padding-top: 12px; padding-bottom: 12px; }
    .cat-scroll-btn, .filter-scroll-btn { width: 38px; height: 38px; }
    .filters .filter-btn, .filters .filter-btn--chip, .filters .filter-btn--icon { padding: 11px 15px !important; font-size: 11px; }
}

/* Pré-cadastro Empresa/Representante */
.precadastro-card { max-width: 720px; }
.pre-signup-choice { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 22px 0; }
.pre-signup-choice__btn { border: 1px solid var(--line, #e8e6df); background: rgba(255,255,255,.04); color: var(--text, #0d0d0d); border-radius: 14px; padding: 18px; text-align: left; cursor: pointer; transition: .2s ease; display: grid; gap: 6px; }
.pre-signup-choice__btn i { font-size: 28px; color: var(--gold, #c9a84c); }
.pre-signup-choice__btn strong { font-size: 1rem; }
.pre-signup-choice__btn span { color: var(--muted, #6b6b6b); font-size: .86rem; line-height: 1.35; }
.pre-signup-choice__btn.active,
.pre-signup-choice__btn:hover { border-color: var(--gold, #c9a84c); box-shadow: inset 0 -2px 0 var(--gold, #c9a84c); background: transparent; }
.pre-signup-form { display: none; }
.pre-signup-form.active { display: grid; }
@media (max-width: 720px) { .pre-signup-choice { grid-template-columns: 1fr; } }


/* Menu dinâmico por perfil */
.nav-dynamic-link {
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.nav-dynamic-link:hover {
  border-bottom-color: var(--gold, #c9a84c);
}
.nav-representative-signup {
  color: var(--gold, #c9a84c) !important;
}
.nav-role-area {
  color: var(--primary, #0d0d0d) !important;
}

/* =========================================================
   CORREÇÃO — BOTÃO "ENTRAR PARA COMPRAR" NOS CARDS DA HOME
   Evita que o botão saia do card quando o cliente não está logado.
   ========================================================= */
.card .btn-group {
    width: 100%;
    min-width: 0;
}

.card .btn-group .btn-det,
.card .btn-group .btn-add {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
}

.card .btn-group .btn-add {
    white-space: normal !important;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: anywhere;
}

.home-product-slide .card .btn-group {
    gap: 8px;
}

.home-product-slide .card .btn-group .btn-det,
.home-product-slide .card .btn-group .btn-add {
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: 10px !important;
}

@media (max-width: 520px) {
    .card .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .card .btn-group .btn-det,
    .card .btn-group .btn-add,
    .card .btn-group .qty-inline-control {
        width: 100%;
        flex: none;
    }
}


/* Modal de detalhes da Área do Representante */
.rep-modal{position:fixed;inset:0;display:none;z-index:9999}.rep-modal.open{display:block}.rep-modal-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.68);backdrop-filter:blur(3px)}.rep-modal-dialog{position:relative;margin:36px auto;background:#fff;border-radius:26px;width:min(1040px,calc(100vw - 28px));max-height:calc(100vh - 72px);overflow:auto;box-shadow:0 28px 80px rgba(0,0,0,.32)}.rep-modal-header{position:sticky;top:0;z-index:1;background:#fff;display:flex;justify-content:space-between;gap:16px;align-items:flex-start;border-bottom:1px solid rgba(15,23,42,.1);padding:22px}.rep-modal-header h2{margin:4px 0 0;color:#111827}.rep-modal-close{border:0;background:#f3f4f6;border-radius:12px;width:38px;height:38px;font-size:24px;cursor:pointer}.rep-modal-content{padding:22px}.rep-modal-content h3{margin:18px 0 12px;color:#111827}.rep-detail-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:18px}.rep-detail{border:1px solid rgba(15,23,42,.1);border-radius:16px;padding:12px;background:#fbfdff}.rep-detail span{display:block;color:#6b7280;font-size:12px;font-weight:800;margin-bottom:6px}.rep-detail strong{display:block;font-size:14px;color:#111827;word-break:break-word}.rep-modal-actions{display:flex;justify-content:flex-end;gap:10px;padding:0 22px 22px}.btn-det.secondary{background:#fff;color:#111827;border:1px solid rgba(15,23,42,.12);box-shadow:none}@media(max-width:900px){.rep-detail-grid{grid-template-columns:1fr 1fr}}@media(max-width:640px){.rep-modal-dialog{margin:12px auto;max-height:calc(100vh - 24px)}.rep-detail-grid{grid-template-columns:1fr}.rep-modal-header{padding:18px}.rep-modal-content{padding:18px}}


/* Cupom de desconto no checkout */
.coupon-box {
    margin: 18px 0;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
}
.coupon-box label {
    display: block;
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 8px;
}
.coupon-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.coupon-row input {
    flex: 1;
    min-width: 220px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
}
.coupon-feedback {
    display: block;
    margin-top: 8px;
    color: #64748b;
}
.coupon-feedback.success { color: #15803d; font-weight: 600; }
.coupon-feedback.error { color: #dc2626; font-weight: 600; }

/* =========================================================
   AJUSTE — PREÇO À VISTA / A PRAZO NOS CARDS DE PRODUTO
   ========================================================= */
.price-box {
    width: 100%;
    margin: auto 0 14px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, .34);
    background: linear-gradient(180deg, rgba(201, 168, 76, .12), rgba(255, 255, 255, .96));
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.price-cash-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1.12;
}
.price-cash-line strong {
    color: var(--primary);
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
}
.price-cash-line span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.price-cash-line em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 7px;
    border-radius: 999px;
    background: var(--gold);
    color: #111;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}
.price-term-line {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}
.modal-info .price-box {
    margin-top: 12px;
    margin-bottom: 16px;
    max-width: 360px;
}
.modal-info .price-cash-line strong {
    font-size: 22px;
}
@media (max-width: 520px) {
    .price-cash-line strong { font-size: 16px; }
    .price-term-line { font-size: 11px; }
}

/* Fase 10.1 — seletor CPF/CNPJ no pré-cadastro de clientes */
.customer-document-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 4px;
}
.customer-document-option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line, #e8e6df);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: .2s ease;
}
.customer-document-option input { position: absolute; opacity: 0; pointer-events: none; }
.customer-document-option.active,
.customer-document-option:has(input:checked) {
  border-color: var(--gold, #c9a84c);
  box-shadow: inset 0 -2px 0 var(--gold, #c9a84c);
  background: rgba(201,168,76,.08);
}


/* Fase 10.2 — validador com seletores de opção discretos */
.pre-signup-radio-group,
.customer-document-choice {
  border: 0;
  padding: 0;
  margin: 22px 0 18px;
  display: grid;
  gap: 12px;
}
.pre-signup-radio-group legend,
.customer-document-choice legend {
  padding: 0;
  margin: 0 0 4px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted, #6b6b6b);
}
.pre-signup-radio-option,
.customer-document-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  min-height: 0;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  color: var(--text, #0d0d0d);
}
.pre-signup-radio-option:hover,
.customer-document-option:hover,
.customer-document-option:has(input:checked),
.customer-document-option.active {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.pre-signup-radio-option input,
.customer-document-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pre-signup-radio-mark,
.customer-document-mark {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  border: 2px solid #b9b7af;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.pre-signup-radio-mark::after,
.customer-document-mark::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold, #c9a84c);
  transform: scale(0);
  transition: transform .18s ease;
}
.pre-signup-radio-option input:checked + .pre-signup-radio-mark,
.customer-document-option input:checked + .customer-document-mark {
  border-color: var(--gold, #c9a84c);
  box-shadow: 0 0 0 3px rgba(201,168,76,.14);
}
.pre-signup-radio-option input:checked + .pre-signup-radio-mark::after,
.customer-document-option input:checked + .customer-document-mark::after {
  transform: scale(1);
}
.pre-signup-radio-option input:focus-visible + .pre-signup-radio-mark,
.customer-document-option input:focus-visible + .customer-document-mark {
  outline: 3px solid rgba(201,168,76,.25);
  outline-offset: 2px;
}
.pre-signup-radio-copy {
  display: grid;
  gap: 2px;
}
.pre-signup-radio-copy strong {
  font-size: .98rem;
}
.pre-signup-radio-copy small {
  color: var(--muted, #6b6b6b);
  font-size: .82rem;
  line-height: 1.4;
}
.customer-document-choice {
  grid-template-columns: 1fr;
  margin-top: 4px;
}
.customer-document-option > span:last-child {
  font-weight: 500;
  line-height: 1.35;
}
@media (min-width: 620px) {
  .customer-document-choice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }
  .customer-document-choice legend {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   FASE 12 — LANDING PAGE LINE HOTEL
   ========================================================= */
.hotel-landing-hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 110px max(6vw, 24px) 80px;
}
.hotel-landing-hero__content { max-width: 790px; }
.hotel-landing-hero h1 { max-width: 760px; font-size: clamp(42px, 6vw, 78px); line-height: .98; }
.hotel-hero-lead { font-size: clamp(19px, 2.2vw, 27px) !important; font-weight: 500; max-width: 700px; }
.hotel-hero-trust { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 32px; color: #fff; font-size: 13px; font-weight: 600; }
.hotel-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hotel-hero-trust i { color: var(--gold); font-size: 20px; }
.hotel-section-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; padding-block: 92px; }
.hotel-section-kicker { display: inline-block; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; }
.hotel-section-heading { max-width: 780px; margin-bottom: 38px; }
.hotel-section-heading h2, .hotel-content-copy h2, .hotel-industry-header h2 { color: var(--primary); font-size: clamp(31px, 4vw, 52px); line-height: 1.07; letter-spacing: -.04em; margin: 0 0 18px; }
.hotel-section-heading p, .hotel-content-copy p, .hotel-industry-header p { color: var(--muted); line-height: 1.8; }
.hotel-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(42px, 7vw, 90px); align-items: center; }
.hotel-content-grid--image { grid-template-columns: .95fr 1.05fr; }
.hotel-content-image { min-height: 520px; border-radius: 8px; background-position: center; background-size: cover; box-shadow: 0 24px 70px rgba(13,13,13,.16); }
.hotel-content-image--experience { background-image: linear-gradient(180deg, transparent 50%, rgba(13,13,13,.25)), url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?auto=format&fit=crop&w=1200&q=85'); }
.hotel-content-image--mattress { background-image: linear-gradient(180deg, transparent 55%, rgba(13,13,13,.18)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=85'); }
.hotel-benefit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.hotel-benefit-cards article { min-height: 112px; padding: 20px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; display: flex; flex-direction: column; justify-content: space-between; }
.hotel-benefit-cards i { color: var(--gold); font-size: 25px; }
.hotel-benefit-cards strong { color: var(--primary); font-size: 14px; }
.hotel-products-intro { padding-bottom: 25px; }
.hotel-check-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 14px; }
.hotel-check-list--two-columns { grid-template-columns: 1fr 1fr; }
.hotel-check-list li { display: flex; align-items: center; gap: 10px; color: var(--primary); font-weight: 500; }
.hotel-check-list i { color: var(--gold); }
.hotel-lifetime-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hotel-lifetime-grid div { padding: 24px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg-2); }
.hotel-lifetime-grid span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.hotel-lifetime-grid strong { display: block; color: var(--primary); font-size: 27px; margin-top: 8px; }
.hotel-lifetime-grid .is-highlight { background: var(--primary); border-color: var(--primary); }
.hotel-lifetime-grid .is-highlight span { color: #c7c7bf; }
.hotel-lifetime-grid .is-highlight strong { color: var(--gold); }
.hotel-modular-section { background: #0d0d0d; padding-block: 20px; }
.hotel-modular-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(40px, 7vw, 90px); }
.hotel-modular-visual { min-height: 540px; border-radius: 7px; position: relative; background: linear-gradient(180deg, transparent 55%, rgba(13,13,13,.6)), url('https://images.unsplash.com/photo-1590490360182-c33d57733427?auto=format&fit=crop&w=1300&q=85') center/cover; }
.hotel-modular-badge { position: absolute; left: 22px; bottom: 22px; background: rgba(13,13,13,.88); color: #fff; border: 1px solid rgba(201,168,76,.45); padding: 12px 16px; border-radius: 4px; font-size: 14px; font-weight: 700; }
.hotel-modular-badge i { color: var(--gold); margin-inline: 8px; }
.hotel-content-copy--dark h2, .hotel-content-copy--dark p { color: #fff !important; }
.hotel-content-copy--dark p { color: #c7c7bf !important; }
.hotel-solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.hotel-solution-card { min-height: 380px; border-radius: 7px; overflow: hidden; background-position: center; background-size: cover; position: relative; }
.hotel-solution-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(13,13,13,.93)); }
.hotel-solution-card > div { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 26px; color: #fff; }
.hotel-solution-card span { color: var(--gold); font-size: 12px; letter-spacing: .16em; }
.hotel-solution-card h3 { font-size: 30px; margin: 7px 0 8px; }
.hotel-solution-card p { color: #ddd; margin: 0; line-height: 1.6; }
.hotel-solution-card--mattress { background-image: url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?auto=format&fit=crop&w=1000&q=82'); }
.hotel-solution-card--beds { background-image: url('https://images.unsplash.com/photo-1616594039964-ae9021a400a0?auto=format&fit=crop&w=1000&q=82'); }
.hotel-solution-card--pillows { background-image: url('https://images.unsplash.com/photo-1584100936595-c0654b55a2e2?auto=format&fit=crop&w=1000&q=82'); }
.hotel-solution-card--linen { background-image: url('https://images.unsplash.com/photo-1631049035182-249067d7618e?auto=format&fit=crop&w=1000&q=82'); }
.hotel-industry-section { border-top: 1px solid var(--line); }
.hotel-industry-header { display: grid; grid-template-columns: 1fr .7fr; gap: 60px; align-items: end; margin-bottom: 40px; }
.hotel-industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hotel-industry-grid article { padding: 28px 22px; border: 1px solid var(--line); background: var(--bg-2); border-radius: 6px; }
.hotel-industry-grid i { font-size: 30px; color: var(--gold); }
.hotel-industry-grid h3 { color: var(--primary); font-size: 17px; margin: 22px 0 10px; }
.hotel-industry-grid p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.hotel-segments-section { background: #0d0d0d; }
.hotel-section-heading--light h2 { color: #fff; }
.hotel-segments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.hotel-segments-grid span { min-height: 100px; border: 1px solid rgba(255,255,255,.12); color: #fff; display: flex; align-items: center; gap: 12px; padding: 20px; border-radius: 5px; font-weight: 600; }
.hotel-segments-grid i { color: var(--gold); font-size: 25px; }
.hotel-faq-list { display: grid; gap: 10px; }
.hotel-faq-list details { border: 1px solid var(--line); background: var(--bg-2); border-radius: 5px; padding: 0 22px; }
.hotel-faq-list summary { list-style: none; cursor: pointer; color: var(--primary); font-weight: 650; padding: 22px 34px 22px 0; position: relative; }
.hotel-faq-list summary::-webkit-details-marker { display: none; }
.hotel-faq-list summary::after { content: '+'; position: absolute; right: 0; color: var(--gold); font-size: 24px; top: 15px; }
.hotel-faq-list details[open] summary::after { content: '−'; }
.hotel-faq-list details p { color: var(--muted); line-height: 1.75; padding: 0 0 22px; margin: 0; }
.hotel-final-cta { min-height: 570px; display: flex; align-items: center; padding: 80px max(6vw, 24px); background: linear-gradient(90deg, rgba(13,13,13,.94), rgba(13,13,13,.58)), url('https://images.unsplash.com/photo-1595576508898-0ad5c879a061?auto=format&fit=crop&w=1800&q=85') center/cover; }
.hotel-final-cta__content { max-width: 730px; }
.hotel-final-cta h2 { color: #fff; font-size: clamp(38px, 5vw, 66px); line-height: 1.03; letter-spacing: -.04em; margin: 0 0 22px; }
.hotel-final-cta p { color: #deded8; font-size: 17px; line-height: 1.8; margin-bottom: 30px; }

@media (max-width: 900px) {
    .hotel-content-grid, .hotel-content-grid--image, .hotel-modular-grid, .hotel-industry-header { grid-template-columns: 1fr; }
    .hotel-content-image, .hotel-modular-visual { min-height: 420px; }
    .hotel-industry-grid, .hotel-segments-grid { grid-template-columns: repeat(2, 1fr); }
    .hotel-modular-visual { order: 2; }
}
@media (max-width: 620px) {
    .hotel-landing-hero { min-height: 620px; padding-top: 90px; }
    .hotel-section-shell { width: min(100% - 28px, 1180px); padding-block: 66px; }
    .hotel-benefit-cards, .hotel-check-list--two-columns, .hotel-lifetime-grid, .hotel-solutions-grid, .hotel-industry-grid, .hotel-segments-grid { grid-template-columns: 1fr; }
    .hotel-content-image, .hotel-modular-visual { min-height: 330px; }
    .hotel-solution-card { min-height: 320px; }
    .hotel-hero-trust { flex-direction: column; gap: 12px; }
}

/* =========================================================
   FASE 12.1 - LINE HOTEL: UMA LINHA COM ROLAGEM INFINITA
   ========================================================= */
#lineHotelSections {
    gap: 56px;
    overflow: hidden;
}

.line-hotel-category-section {
    min-width: 0;
    overflow: hidden;
}

.line-hotel-product-marquee {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 4px 50px 18px;
}

.line-hotel-product-marquee__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
    padding: 8px 2px 16px;
}

.line-hotel-product-marquee__track::-webkit-scrollbar {
    display: none;
}

.line-hotel-product-slide {
    flex: 0 0 clamp(245px, 23vw, 305px);
    width: clamp(245px, 23vw, 305px);
    min-width: clamp(245px, 23vw, 305px);
}

.line-hotel-product-slide .card {
    width: 100% !important;
    height: 100%;
    min-width: 0 !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column;
}

.line-hotel-product-slide .card img {
    width: 100%;
    height: 210px;
    object-fit: contain;
}

.line-hotel-product-slide .btn-group {
    margin-top: auto;
}

.line-hotel-carousel-controls {
    pointer-events: none;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 4;
}

.line-hotel-carousel-btn {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(13,13,13,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(13,13,13,.14);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.line-hotel-carousel-btn:hover {
    transform: scale(1.06);
    background: var(--primary);
    color: #fff;
}

@media (max-width: 760px) {
    .line-hotel-product-marquee {
        padding-inline: 8px;
    }

    .line-hotel-product-slide {
        flex-basis: min(78vw, 285px);
        width: min(78vw, 285px);
        min-width: min(78vw, 285px);
    }

    .line-hotel-carousel-controls {
        display: none !important;
    }
}


/* ===== FASE 13: PÁGINA PARA LOJISTAS ===== */
.retailer-shell{width:min(1180px,calc(100% - 40px));margin:0 auto}.retailer-kicker{display:inline-block;text-transform:uppercase;letter-spacing:.13em;font-size:.78rem;font-weight:700;color:#f6b93b;margin-bottom:14px}.retailer-kicker.dark{color:#a66d00}.retailer-hero{position:relative;min-height:660px;display:flex;align-items:center;background:url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;color:#fff}.retailer-hero__overlay,.retailer-final__overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,8,8,.92) 0%,rgba(8,8,8,.68) 48%,rgba(8,8,8,.18) 100%)}.retailer-hero__content{position:relative;z-index:1;padding:105px 0;max-width:780px;margin-left:max(20px,calc((100% - 1180px)/2))}.retailer-hero h1{font-size:clamp(2.35rem,5vw,4.7rem);line-height:1.05;max-width:800px;margin:0 0 22px}.retailer-lead{font-size:clamp(1.05rem,2vw,1.35rem);max-width:720px}.retailer-actions{display:flex;flex-wrap:wrap;gap:14px;margin:30px 0}.retailer-trust{display:flex;flex-wrap:wrap;gap:12px}.retailer-trust span{display:flex;align-items:center;gap:8px;padding:10px 14px;border:1px solid rgba(255,255,255,.25);border-radius:999px;background:rgba(255,255,255,.08);backdrop-filter:blur(5px);font-size:.86rem}.retailer-intro,.retailer-factory,.retailer-audience,.retailer-faq{padding:95px 0}.retailer-split,.retailer-factory{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}.retailer-split h2,.retailer-factory h2,.retailer-profit h2,.retailer-heading h2{font-size:clamp(1.9rem,3vw,3rem);line-height:1.15;margin:0 0 20px;color:#191919}.retailer-split blockquote{border-left:4px solid #f0a500;margin:28px 0;padding:18px 22px;background:#fff8e8;font-size:1.12rem}.retailer-photo{min-height:480px;border-radius:22px;background-size:cover;background-position:center;box-shadow:0 25px 55px rgba(0,0,0,.14)}.retailer-photo--store{background-image:url('https://images.unsplash.com/photo-1604014237800-1c9102c219da?auto=format&fit=crop&w=1100&q=85')}.retailer-photo--factory{background-image:url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1100&q=85')}.retailer-checks{list-style:none;padding:0;display:grid;gap:12px}.retailer-checks li{display:flex;gap:10px;align-items:flex-start}.retailer-checks i{color:#d48d00;font-size:1.25rem}.retailer-products{padding:85px 0 100px}.retailer-heading{text-align:center;max-width:830px;margin:0 auto 42px}.retailer-heading.light h2,.retailer-heading.light p{color:#fff}.retailer-products .line-hotel-category-section{margin-bottom:55px}.retailer-products .line-hotel-product-marquee{overflow:hidden}.retailer-results{background:#111;color:#fff;padding:95px 0}.retailer-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.retailer-metrics article{padding:30px 24px;border:1px solid rgba(255,255,255,.12);border-radius:18px;background:rgba(255,255,255,.055)}.retailer-metrics i{font-size:2.1rem;color:#f4ae21}.retailer-metrics h3{margin:18px 0 8px}.retailer-feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:28px}.retailer-feature-grid article{display:grid;grid-template-columns:auto 1fr;column-gap:12px;padding:18px;border:1px solid #e7e7e7;border-radius:14px}.retailer-feature-grid i{grid-row:1/3;font-size:1.8rem;color:#c58200}.retailer-feature-grid span{color:#666;font-size:.88rem}.retailer-profit{padding:90px 0;background:linear-gradient(135deg,#1a1a1a,#343434);color:#fff}.retailer-profit__grid{display:grid;grid-template-columns:1.3fr .7fr;gap:70px;align-items:center}.retailer-profit h2{color:#fff}.retailer-profit-list{display:grid;gap:13px}.retailer-profit-list span{display:flex;gap:10px;align-items:center;padding:14px 16px;border-radius:10px;background:rgba(255,255,255,.08)}.retailer-profit-list i{color:#f4ae21}.retailer-audience-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.retailer-audience-grid span{min-height:120px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:12px;text-align:center;border:1px solid #e6e6e6;border-radius:16px;background:#fff;box-shadow:0 10px 28px rgba(0,0,0,.05);font-weight:600}.retailer-audience-grid i{font-size:2rem;color:#bb7900}.retailer-final{position:relative;min-height:520px;display:flex;align-items:center;background:url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;color:#fff}.retailer-final__content{position:relative;z-index:1;max-width:780px;padding:100px 0}.retailer-final h2{font-size:clamp(2rem,4vw,3.7rem);line-height:1.1;margin:0 0 20px}.retailer-final p{font-size:1.08rem;max-width:690px;margin-bottom:30px}
@media(max-width:900px){.retailer-split,.retailer-factory,.retailer-profit__grid{grid-template-columns:1fr}.retailer-photo{min-height:360px}.retailer-metrics,.retailer-audience-grid{grid-template-columns:repeat(2,1fr)}.retailer-hero__content{margin:0 auto;padding-left:20px;padding-right:20px}.retailer-hero{min-height:600px}}
@media(max-width:600px){.retailer-shell{width:min(100% - 24px,1180px)}.retailer-hero h1{font-size:2.45rem}.retailer-trust{display:grid;grid-template-columns:1fr 1fr}.retailer-metrics,.retailer-audience-grid,.retailer-feature-grid{grid-template-columns:1fr}.retailer-intro,.retailer-factory,.retailer-audience,.retailer-faq,.retailer-products{padding:65px 0}.retailer-photo{min-height:290px}.retailer-actions a{width:100%;text-align:center}}


/* ===== FASE 14 — CTAs, modal e ajustes das páginas especiais ===== */
:root{--tek-gold:#d7a928;--tek-gold-dark:#b88708;--tek-navy:#0b1a3a}
.btn-gold,.btn-white{border:0;border-radius:8px;padding:14px 24px;font:inherit;font-weight:700;cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;gap:8px;transition:.2s ease}
.btn-gold{background:var(--tek-gold);color:#111}.btn-gold:hover{background:#e8bd3f;transform:translateY(-1px)}
.btn-white{background:#fff;color:var(--tek-navy)}.btn-white:hover{background:#f4f4f4;transform:translateY(-1px)}
.section-inline-cta{margin-top:34px;padding:24px 28px;border-radius:16px;background:#f6f1df;display:flex;align-items:center;justify-content:space-between;gap:22px}
.section-inline-cta p{margin:0;font-weight:650;font-size:1.08rem;color:#17213b}.retailer-inline-cta{margin-bottom:50px}
.consultant-modal{position:fixed;inset:0;z-index:10050;display:none;align-items:center;justify-content:center;padding:20px}.consultant-modal.is-open{display:flex}.consultant-modal__backdrop{position:absolute;inset:0;background:rgba(3,12,31,.72);backdrop-filter:blur(4px)}
.consultant-modal__dialog{position:relative;width:min(520px,100%);background:#fff;border-radius:20px;padding:34px;box-shadow:0 30px 90px rgba(0,0,0,.35)}.consultant-modal__close{position:absolute;right:16px;top:12px;border:0;background:transparent;font-size:32px;cursor:pointer;color:#555}.consultant-modal__eyebrow{font-size:.78rem;text-transform:uppercase;letter-spacing:.12em;color:var(--tek-gold-dark);font-weight:800}.consultant-modal h2{margin:8px 0 8px;color:var(--tek-navy)}.consultant-modal p{margin:0 0 20px;color:#5c6474}.consultant-modal form{display:grid;gap:14px}.consultant-modal label{font-size:.86rem;font-weight:700;color:#26324a;display:grid;gap:6px}.consultant-modal input{width:100%;border:1px solid #d9dde5;border-radius:9px;padding:13px 14px;font:inherit;box-sizing:border-box}.consultant-modal input:focus{outline:2px solid rgba(215,169,40,.35);border-color:var(--tek-gold)}.consultant-modal__submit{width:100%;margin-top:6px}.modal-open{overflow:hidden}
.hotel-content-image--mattress,.hotel-modular-visual{background-size:cover!important;background-position:center!important}
.hotel-solution-card>div{background:var(--tek-gold);color:#101827;padding:14px 16px;border-radius:10px;margin:14px;width:calc(100% - 28px);box-sizing:border-box}.hotel-solution-card>div p{color:#18233b}.hotel-solution-card>div span{color:#18233b!important}
.modular-products-panel{max-width:1200px;margin:0 auto;padding:36px 6% 56px}.modular-products-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.modular-products-grid .product-card{width:100%;max-width:none}
.retailer-hero__content>.retailer-kicker,.retailer-hero__content>h1{background:var(--tek-gold);color:#111;display:table;padding:7px 12px;border-radius:5px;box-decoration-break:clone;-webkit-box-decoration-break:clone}.retailer-hero__content>h1{padding:10px 14px}
.retailer-final__content h2{background:var(--tek-gold);color:#111;display:inline-block;padding:10px 14px;border-radius:6px}
@media(max-width:760px){.section-inline-cta{align-items:stretch;flex-direction:column;text-align:center}.modular-products-grid{grid-template-columns:1fr}.consultant-modal__dialog{padding:28px 20px}.retailer-hero__content>.retailer-kicker,.retailer-hero__content>h1{display:inline-block}}

/* Fase 14.1 — Cards da seção "Tudo o que seu hotel precisa" */
.hotel-solutions-grid .hotel-solution-card {
    background-size: 100%;
    transition: background-size .55s ease, transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 12px 30px rgba(13, 13, 13, .12);
}

.hotel-solutions-grid .hotel-solution-card:hover {
    background-size: 106%;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(13, 13, 13, .2);
}

.hotel-solutions-grid .hotel-solution-card::after {
    background: linear-gradient(180deg, rgba(13,13,13,0) 35%, rgba(13,13,13,.22) 58%, rgba(13,13,13,.88) 100%);
    transition: background .35s ease;
}

.hotel-solutions-grid .hotel-solution-card:hover::after {
    background: linear-gradient(180deg, rgba(13,13,13,.02) 28%, rgba(13,13,13,.3) 56%, rgba(13,13,13,.94) 100%);
}

.hotel-solutions-grid .hotel-solution-card > div {
    background: transparent;
    color: #fff;
    padding: 0;
    margin: 0;
    width: auto;
    border-radius: 0;
    box-sizing: border-box;
    text-shadow: 0 2px 12px rgba(0,0,0,.42);
}

.hotel-solutions-grid .hotel-solution-card > div span {
    display: inline-block;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--tek-gold);
    color: #101827 !important;
    text-shadow: none;
    font-weight: 700;
}

.hotel-solutions-grid .hotel-solution-card > div h3 {
    color: #fff;
}

.hotel-solutions-grid .hotel-solution-card > div p {
    color: rgba(255,255,255,.9);
}

@media (max-width: 720px) {
    .hotel-solutions-grid .hotel-solution-card {
        background-size: cover;
    }

    .hotel-solutions-grid .hotel-solution-card:hover {
        background-size: cover;
        transform: none;
    }
}


/* ===== FASE 15 — Premium UI: CTAs, espaçamento e modal B2B ===== */
:root{
    --cta-height:56px;
    --cta-radius:14px;
    --section-space:88px;
}

/* Botões padronizados */
.btn-gold,.btn-white{
    min-height:var(--cta-height);
    min-width:260px;
    padding:15px 28px;
    border-radius:var(--cta-radius);
    font-size:1rem;
    font-weight:750;
    line-height:1.2;
    letter-spacing:.01em;
    box-shadow:0 10px 24px rgba(16,26,58,.12);
    transition:transform .22s ease,box-shadow .22s ease,background-color .22s ease,color .22s ease;
}
.btn-gold:hover,.btn-white:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 32px rgba(16,26,58,.2);
}
.btn-gold:focus-visible,.btn-white:focus-visible{
    outline:3px solid rgba(215,169,40,.38);
    outline-offset:3px;
}
.btn-gold:disabled,.btn-white:disabled{opacity:.72;cursor:wait;transform:none}

/* CTAs internos centralizados e com respiro consistente */
.section-inline-cta{
    width:min(100% - 40px,1120px);
    box-sizing:border-box;
    margin:48px auto 56px;
    padding:30px 34px;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:20px;
    border:1px solid rgba(215,169,40,.25);
    box-shadow:0 14px 34px rgba(16,26,58,.07);
}
.section-inline-cta p{
    max-width:720px;
    font-size:clamp(1.05rem,1.8vw,1.22rem);
    line-height:1.55;
}
.section-inline-cta .btn-gold,.section-inline-cta .btn-white{margin-inline:auto}
.retailer-inline-cta{margin-top:48px;margin-bottom:64px}

/* Hero e CTA final */
.retailer-actions{
    justify-content:center;
    align-items:center;
    gap:16px;
    margin:38px 0 34px;
    width:fit-content;
    max-width:100%;
}
.hotel-final-cta__content,.retailer-final__content{text-align:center;margin-inline:auto}
.hotel-final-cta__content .btn-gold,.retailer-final__content .btn-white{margin:14px auto 0}
.hotel-final-cta__content p,.retailer-final__content p{margin-left:auto;margin-right:auto}

/* Ritmo vertical das páginas especiais */
.hotel-section-shell,.retailer-shell{scroll-margin-top:100px}
.hotel-solutions,.hotel-benefits,.hotel-replacement,.hotel-modular,.hotel-factory,.hotel-faq,
.retailer-intro,.retailer-products,.retailer-results,.retailer-factory,.retailer-profit,.retailer-audience,.retailer-faq{
    padding-top:var(--section-space);
    padding-bottom:var(--section-space);
}
.hotel-section-heading,.retailer-heading{margin-bottom:42px}
.hotel-section-heading h2,.retailer-heading h2{margin-bottom:18px}

/* Modal B2B mais refinado */
.consultant-modal__dialog{
    width:min(560px,100%);
    padding:38px;
    border:1px solid rgba(215,169,40,.24);
}
.consultant-modal__dialog::before{
    content:'TEK SHINE';
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:32px;
    padding:5px 12px;
    margin-bottom:18px;
    border-radius:999px;
    background:#0b1a3a;
    color:#fff;
    font-size:.72rem;
    font-weight:850;
    letter-spacing:.16em;
}
.consultant-modal form{grid-template-columns:1fr 1fr;gap:15px}
.consultant-modal label{font-size:.87rem}
.consultant-modal label:nth-of-type(1),
.consultant-modal label:nth-of-type(4),
.consultant-modal__submit{grid-column:1/-1}
.consultant-modal input{min-height:50px;border-radius:11px;background:#fbfbfc}
.consultant-modal__submit{margin-top:8px;min-width:100%}
.consultant-spinner{
    width:18px;height:18px;border:2px solid rgba(17,17,17,.3);border-top-color:#111;border-radius:50%;display:inline-block;animation:consultantSpin .75s linear infinite
}
@keyframes consultantSpin{to{transform:rotate(360deg)}}

@media(max-width:760px){
    :root{--section-space:64px}
    .btn-gold,.btn-white{width:100%;min-width:0}
    .section-inline-cta{width:min(100% - 24px,1120px);padding:26px 20px;margin-top:38px;margin-bottom:46px}
    .retailer-actions{width:100%;flex-direction:column}
    .consultant-modal form{grid-template-columns:1fr}
    .consultant-modal label,.consultant-modal label:nth-of-type(1),.consultant-modal label:nth-of-type(4),.consultant-modal__submit{grid-column:1}
    .consultant-modal__dialog{padding:30px 20px}
}

/* Fase 15.1 — CTAs integrados ao conteúdo das seções */
.section-text-cta{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    margin-top:28px;
}
.section-text-cta p{
    margin:0;
    max-width:620px;
    font-size:1rem;
    line-height:1.65;
    font-weight:650;
    color:inherit;
}
.section-text-cta .btn-gold,
.section-text-cta .btn-white{
    width:auto;
    min-width:220px;
    margin:0;
}
.section-text-cta--center{
    align-items:center;
    text-align:center;
}
.section-text-cta--compact{margin-top:22px}
.hotel-industry-header .section-text-cta{align-items:flex-start}
.retailer-results .section-text-cta p{color:#e8e8e8}
@media(max-width:760px){
    .section-text-cta,
    .section-text-cta--center{
        align-items:stretch;
        text-align:left;
        margin-top:24px;
    }
    .section-text-cta .btn-gold,
    .section-text-cta .btn-white{
        width:100%;
        min-width:0;
    }
}

/* Fase 18 — footer global padronizado */
.main-footer.site-map-footer{background:#0b0b0b!important;padding:70px 0 0!important;color:#fff}.site-map-footer .footer-container{width:min(1180px,calc(100% - 40px));margin:0 auto}.site-map-footer .footer-grid{display:grid!important;grid-template-columns:1.25fr repeat(3,minmax(0,1fr))!important;gap:55px!important;width:100%!important;max-width:none!important;margin:0!important;padding:0 0 55px!important}.site-map-footer .footer-section{display:flex!important;flex-direction:column!important;align-items:flex-start!important;gap:10px!important}.site-map-footer .footer-section h4{color:#e0b834!important;margin:0 0 15px!important}.site-map-footer .footer-section a{display:block!important;color:#d5d5d5!important;text-decoration:none!important;line-height:1.55!important}.site-map-footer .footer-brand p{color:#d5d5d5!important;line-height:1.7!important}.site-map-footer .footer-logo{width:100px!important;height:auto!important}.site-map-footer .footer-bottom{border-top:1px solid #262626!important;display:flex!important;justify-content:space-between!important;align-items:center!important;padding:24px 0!important;margin:0!important}.site-map-footer .footer-bottom p{margin:0;color:#8f8f8f!important}@media(max-width:900px){.site-map-footer .footer-grid{grid-template-columns:1fr 1fr!important}}@media(max-width:600px){.site-map-footer .footer-grid{grid-template-columns:1fr!important}.site-map-footer .footer-bottom{flex-direction:column!important;align-items:flex-start!important;gap:10px!important}}


/* Tek Shine 2.0 — Institucional */
body[data-page="institucional"]{background:#fff;color:#171717}
.institutional-v2{overflow:hidden}
.institutional-v2 .iv2-shell{width:min(1180px,calc(100% - 40px));margin:auto}
.iv2-hero{min-height:680px;position:relative;display:flex;align-items:center;background:url('https://i.postimg.cc/6qyS1Zg4/5.jpg') center/cover no-repeat;isolation:isolate}
.iv2-hero::before{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(0,0,0,.94),rgba(0,0,0,.72) 52%,rgba(0,0,0,.22))}
.iv2-hero__content{padding:110px 0;color:#fff;max-width:790px}
.iv2-kicker{display:inline-flex;background:#e0b834;color:#111;padding:8px 13px;border-radius:4px;font-size:.75rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase}
.iv2-hero h1{font-size:clamp(42px,6vw,76px);line-height:1.04;letter-spacing:-.04em;margin:22px 0;color:#fff;text-shadow:0 3px 20px rgba(0,0,0,.75)}
.iv2-hero h1 strong{color:#f2c94c}
.iv2-hero p{font-size:clamp(17px,2vw,21px);line-height:1.75;color:#f5f5f5;max-width:700px}
.iv2-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:32px}
.iv2-btn{min-height:54px;padding:0 25px;border-radius:7px;display:inline-flex;align-items:center;justify-content:center;gap:9px;text-decoration:none;font-weight:750;border:1px solid transparent;transition:.2s ease}
.iv2-btn:hover{transform:translateY(-2px)}.iv2-btn--gold{background:#e0b834;color:#111}.iv2-btn--ghost{border-color:#fff;color:#fff;background:transparent}.iv2-btn--dark{background:#111;color:#fff}
.iv2-proof{display:flex;gap:28px;flex-wrap:wrap;margin-top:42px;color:#f2f2f2;font-size:.9rem}.iv2-proof span{display:flex;gap:8px;align-items:center}
.iv2-section{padding:100px 0}.iv2-section--soft{background:#f6f4ee}.iv2-section--dark{background:#0d0d0d;color:#fff}
.iv2-grid-2{display:grid;grid-template-columns:1.05fr .95fr;gap:72px;align-items:center}
.iv2-heading{max-width:760px;margin-bottom:46px}.iv2-heading h2,.iv2-grid-2 h2{font-size:clamp(32px,4vw,52px);line-height:1.14;letter-spacing:-.03em;margin:14px 0 20px;color:#111}.iv2-section--dark h2{color:#fff}.iv2-heading p,.iv2-grid-2 p{color:#5d5d5d;line-height:1.8}.iv2-section--dark p{color:#c7c7c7}
.iv2-story-card{background:#111;color:#fff;padding:42px;border-radius:18px;border:1px solid #2b2b2b}.iv2-story-card strong{display:block;color:#e0b834;font-size:3rem}.iv2-story-card p{color:#ddd}
.iv2-values{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.iv2-values article,.iv2-diffs article,.iv2-process article{background:#fff;border:1px solid #e2ded3;border-radius:14px;padding:28px;box-shadow:none}.iv2-values i,.iv2-diffs i{font-size:30px;color:#b88f17}.iv2-values h3,.iv2-diffs h3{margin:18px 0 9px}.iv2-values p,.iv2-diffs p,.iv2-process p{color:#676767;line-height:1.65;font-size:.93rem}
.iv2-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.iv2-metrics article{border:1px solid #333;padding:28px;border-radius:12px}.iv2-metrics strong{display:block;color:#e0b834;font-size:2rem}.iv2-metrics span{color:#bbb;font-size:.86rem}
.iv2-timeline{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}.iv2-timeline article{position:relative;padding:28px 22px;background:#fff;border:1px solid #e1ddd2;border-radius:12px}.iv2-timeline b{color:#b88f17;font-size:1.4rem}.iv2-timeline h3{font-size:1rem;margin:12px 0 6px}.iv2-timeline p{font-size:.86rem;color:#666;line-height:1.55}
.iv2-diffs{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.iv2-gallery{display:grid;grid-template-columns:1.4fr .8fr .8fr;grid-template-rows:260px 260px;gap:14px}.iv2-gallery img{width:100%;height:100%;object-fit:cover;border-radius:12px}.iv2-gallery img:first-child{grid-row:1/3}
.iv2-process{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}.iv2-process b{width:38px;height:38px;display:grid;place-items:center;border-radius:50%;background:#e0b834;color:#111}
.iv2-cta{background:#e0b834;padding:48px;border-radius:18px;display:flex;align-items:center;justify-content:space-between;gap:30px}.iv2-cta h2{margin:0 0 10px;color:#111}.iv2-cta p{margin:0;color:#2b2b2b}
@media(max-width:950px){.iv2-grid-2{grid-template-columns:1fr}.iv2-values{grid-template-columns:1fr 1fr}.iv2-metrics{grid-template-columns:1fr 1fr}.iv2-timeline{grid-template-columns:1fr 1fr}.iv2-diffs{grid-template-columns:1fr 1fr}.iv2-process{grid-template-columns:1fr 1fr 1fr}.iv2-gallery{grid-template-columns:1fr 1fr;grid-template-rows:260px 220px}.iv2-gallery img:first-child{grid-column:1/3;grid-row:auto}.iv2-cta{align-items:flex-start;flex-direction:column}}
@media(max-width:620px){.iv2-section{padding:72px 0}.iv2-shell{width:min(100% - 28px,1180px)!important}.iv2-values,.iv2-metrics,.iv2-timeline,.iv2-diffs,.iv2-process{grid-template-columns:1fr}.iv2-gallery{display:block}.iv2-gallery img{height:230px;margin-bottom:12px}.iv2-actions{flex-direction:column}.iv2-btn{width:100%}.iv2-cta{padding:30px 22px}}


/* FASE 27.8 — BLOG DESTACADO NO MENU */
.main-nav > a.nav-blog-highlight,
.lp-header nav > a.nav-blog-highlight {
    color: var(--gold, #c9a84c) !important;
    font-weight: 800 !important;
    letter-spacing: .04em;
}
.main-nav > a.nav-blog-highlight:hover,
.lp-header nav > a.nav-blog-highlight:hover {
    color: var(--gold-soft, #f0d78c) !important;
}


/* Fase 34.7 - Aviso de pedido mínimo após login do cliente */
body.minimum-order-login-open { overflow: hidden; }
.minimum-order-login-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.minimum-order-login-modal.active {
    opacity: 1;
    visibility: visible;
}

.minimum-order-login-card {
    width: min(520px, 100%);
    background: #fff;
    border-radius: 18px;
    padding: 34px;
    border-top: 5px solid #d9ad2b;
    text-align: center;
}

.minimum-order-login-badge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff4c7;
    color: #7a5a00;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.minimum-order-login-icon {
    width: 62px;
    height: 62px;
    margin: 18px auto 12px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #0d0d0d;
    color: #d9ad2b;
    font-size: 1.7rem;
}

.minimum-order-login-card h2 {
    margin: 0 0 10px;
    color: #111;
    font-size: clamp(1.45rem, 4vw, 2rem);
    line-height: 1.12;
}

.minimum-order-login-lead {
    margin: 0 auto;
    max-width: 430px;
    color: #555;
    line-height: 1.55;
}

.minimum-order-login-info {
    display: grid;
    gap: 10px;
    margin: 24px 0;
    text-align: left;
}

.minimum-order-login-info > div {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px 14px;
    background: #f7f7f5;
    border-radius: 10px;
    color: #333;
    font-size: .92rem;
    line-height: 1.45;
}

.minimum-order-login-info i {
    color: #b68b13;
    font-size: 1.15rem;
    margin-top: 1px;
}

.minimum-order-login-button {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 8px;
    background: #0d0d0d;
    color: #fff;
    font: inherit;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
}

.minimum-order-login-button:hover,
.minimum-order-login-button:focus-visible {
    background: #d9ad2b;
    color: #111;
}

@media (max-width: 560px) {
    .minimum-order-login-modal { padding: 16px; }
    .minimum-order-login-card { padding: 26px 20px; }
}


/* Fase 34.8 - Regra de frete grátis no aviso pós-login */
.minimum-order-login-info > .minimum-order-login-freight {
    background: #fff8df;
    border: 1px solid rgba(217, 173, 43, .38);
}
.minimum-order-login-info > .minimum-order-login-freight i {
    color: #9d760b;
}
.minimum-order-login-info > .minimum-order-login-freight strong {
    color: #111;
}

/* Fase 34.9 - resumo de comissões da área do representante */
.rep-commission-summary{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin:22px 0}.rep-commission-metric{border:1px solid var(--line);border-radius:18px;background:#fff;padding:18px 20px}.rep-commission-metric span{display:block;color:var(--muted);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}.rep-commission-metric strong{display:block;color:#111827;font-size:25px;line-height:1.15;margin-top:6px}.rep-commission-metric small{display:block;color:var(--muted);margin-top:5px}.rep-commission-value{color:#94700a!important}.rep-commission-canceled{color:#9ca3af!important;text-decoration:line-through}@media(max-width:760px){.rep-commission-summary{grid-template-columns:1fr}.rep-commission-metric{padding:16px}}

/* Fase 34.10 — Quantidade digitável e orientação por múltiplo de fardo */
.qty-control-wrap{flex:1;min-width:0;display:flex;flex-direction:column;gap:6px}.qty-control-wrap .qty-inline-control{width:100%}.qty-inline-input,.cart-qty-input{appearance:textfield;-moz-appearance:textfield;border:0;outline:0;text-align:center;font-weight:800;font-size:14px;min-width:0}.qty-inline-input::-webkit-outer-spin-button,.qty-inline-input::-webkit-inner-spin-button,.cart-qty-input::-webkit-outer-spin-button,.cart-qty-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.qty-inline-input{width:64px;background:rgba(255,255,255,.13);color:#fff;border-radius:8px;padding:6px 4px}.qty-inline-input:focus{background:#fff;color:#111}.qty-ctrl-editable{display:flex;align-items:center;gap:6px}.cart-qty-input{width:64px;height:34px;border:1px solid #d8d8d8;border-radius:8px;background:#fff;color:#111;padding:4px}.cart-qty-input:focus{border-color:#b68b22}.pack-qty-hint{font-size:11px;line-height:1.4;color:#735b1c;background:#fff8df;border:1px solid #ecd98e;border-radius:9px;padding:7px 8px;margin-top:5px}.pack-qty-hint button{border:0;background:transparent;color:#8a6512;font:inherit;font-weight:800;text-decoration:underline;cursor:pointer;padding:0 2px}.pack-qty-hint button:hover{color:#111}.card .pack-qty-hint{text-align:center}.cart-item .pack-qty-hint{max-width:260px}.btn-group>.qty-control-wrap{flex:1}@media(max-width:560px){.qty-inline-input{width:58px}.cart-qty-input{width:58px}.pack-qty-hint{font-size:10px}}

/* Fase 34.11 — Quantidade sempre visível após adicionar ao carrinho */
.qty-inline-input{
    background:#fff !important;
    color:#111 !important;
    -webkit-text-fill-color:#111 !important;
    opacity:1 !important;
    border:1px solid rgba(217,173,43,.55) !important;
    border-radius:8px !important;
    font-size:15px !important;
    font-weight:900 !important;
    line-height:1 !important;
    text-align:center !important;
    caret-color:#111;
}
.qty-inline-input:focus{
    background:#fff !important;
    color:#111 !important;
    -webkit-text-fill-color:#111 !important;
    border-color:#d9ad2b !important;
    box-shadow:0 0 0 2px rgba(217,173,43,.16);
}
.qty-inline-input::selection{background:#d9ad2b;color:#111;}


/* Fase 34.12 — contador compacto, proporcional e atualização imediata */
.card .btn-group{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(118px,1fr)!important;gap:8px!important;align-items:stretch!important;}
.card .btn-group>.qty-control-wrap{width:100%!important;max-width:100%!important;min-width:0!important;flex:none!important;}
.card .qty-inline-control{width:100%!important;min-width:0!important;min-height:46px!important;padding:5px 6px!important;border-radius:6px!important;gap:5px!important;box-sizing:border-box!important;}
.card .qty-inline-btn{flex:0 0 28px!important;width:28px!important;height:32px!important;min-width:28px!important;padding:0!important;border-radius:5px!important;}
.card .qty-inline-input{flex:1 1 auto!important;width:46px!important;min-width:36px!important;max-width:76px!important;height:32px!important;padding:4px 3px!important;border-radius:5px!important;box-sizing:border-box!important;}
.card .pack-qty-hint{grid-column:1/-1;max-width:100%;font-size:10px;padding:6px 7px;margin-top:2px;}
#cartSidebar .cart-item{display:grid!important;grid-template-columns:48px minmax(0,1fr) auto!important;gap:8px!important;padding:10px 0!important;align-items:start!important;}
#cartSidebar .cart-item-thumb{width:48px!important;height:48px!important;border-radius:7px!important;}
#cartSidebar .qty-ctrl-editable{display:grid!important;grid-template-columns:28px minmax(52px,88px) 28px!important;gap:5px!important;width:max-content!important;max-width:100%!important;flex-wrap:nowrap!important;}
#cartSidebar .qty-btn{width:28px!important;height:28px!important;border-radius:6px!important;}
#cartSidebar .cart-qty-input{width:100%!important;min-width:52px!important;max-width:88px!important;height:28px!important;padding:2px 4px!important;box-sizing:border-box!important;}
#cartSidebar .cart-item-price{font-size:11px!important;padding-left:4px!important;max-width:88px!important;white-space:normal!important;text-align:right!important;}
#cartSidebar .pack-qty-hint{grid-column:2/4!important;max-width:100%!important;font-size:10px!important;}
@media(max-width:620px){.card .btn-group{grid-template-columns:1fr!important}.card .btn-group>.qty-control-wrap,.card .btn-group .btn-det{width:100%!important}.card .qty-inline-input{max-width:none!important}.card .qty-inline-control{justify-content:center!important}}

/* =========================================================
   Fase 34.19 — Home header em 3 níveis + categorias visuais
   ========================================================= */
body[data-page="home"]{
    --home-offers-height: 58px;
    --home-main-header-height: 78px;
    --home-categories-height: 126px;
    --home-stacked-header-height: calc(var(--home-offers-height) + var(--home-main-header-height) + var(--home-categories-height));
    padding-top: var(--home-stacked-header-height);
}

.home-offers-bar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2205;
    height: var(--home-offers-height);
    background: linear-gradient(90deg,#111 0 29%,#c9a84c 29% 100%);
    border-bottom: 1px solid rgba(255,255,255,.12);
    color:#fff;
}
.home-offers-bar__inner{
    width:min(1440px,92%);
    height:100%;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(280px,.8fr) minmax(620px,1.6fr);
    align-items:center;
    gap:28px;
}
.home-offers-bar__copy{font-size:14px;line-height:1.2;white-space:nowrap;}
.home-offers-bar__copy strong{color:#f0d78c;font-weight:800;}
.home-offers-form{
    display:grid;
    grid-template-columns:minmax(190px,1fr) minmax(180px,.85fr) auto minmax(260px,.95fr);
    gap:9px;
    align-items:center;
}
.home-offers-form input{
    height:38px;
    border:0;
    border-radius:5px;
    background:#fff;
    color:#111;
    padding:0 14px;
    font:500 13px 'Poppins',sans-serif;
    outline:none;
}
.home-offers-form input:focus{box-shadow:0 0 0 2px rgba(13,13,13,.25);}
.home-offers-form button{
    height:38px;
    border:1px solid #111;
    border-radius:5px;
    background:#111;
    color:#fff;
    padding:0 18px;
    font-weight:800;
    cursor:pointer;
    white-space:nowrap;
}
.home-offers-form button:hover{background:#fff;color:#111;}
.home-offers-form small{font-size:9px;line-height:1.25;color:#171717;font-weight:600;}
.home-offers-form.is-success input,.home-offers-form.is-success button{opacity:.65;}

body[data-page="home"] > header.home-main-header{
    top: var(--home-offers-height);
    min-height: var(--home-main-header-height);
    height: var(--home-main-header-height);
    padding:12px 7%;
    grid-template-columns:auto 1fr auto;
    gap:28px;
    box-shadow:none;
    border-bottom:1px solid rgba(201,168,76,.22);
}
body[data-page="home"] > header.home-main-header .logo img{height:43px;}
body[data-page="home"] > header.home-main-header .main-nav{justify-content:flex-start;gap:24px;}
body[data-page="home"] > header.home-main-header .main-nav a{font-size:13px;text-transform:uppercase;letter-spacing:.025em;}
body[data-page="home"] > header.home-main-header .header-tools{gap:8px;}
body[data-page="home"] > header.home-main-header .account-trigger,
body[data-page="home"] > header.home-main-header .search-trigger,
body[data-page="home"] > header.home-main-header .cart-trigger{
    width:42px;height:42px;border:1px solid rgba(201,168,76,.42);border-radius:5px;background:rgba(255,255,255,.025);
}
body[data-page="home"] > header.home-main-header .account-trigger:hover,
body[data-page="home"] > header.home-main-header .search-trigger:hover,
body[data-page="home"] > header.home-main-header .cart-trigger:hover{background:#c9a84c;color:#111;}

.home-header-categories{
    position:fixed;
    top:calc(var(--home-offers-height) + var(--home-main-header-height));
    left:0;
    right:0;
    height:var(--home-categories-height);
    z-index:2190;
    display:grid;
    grid-template-columns:48px minmax(0,1fr) 48px;
    align-items:center;
    gap:12px;
    padding:10px 6%;
    background:#fff;
    border-bottom:1px solid #e8e6df;
    box-shadow:0 8px 24px -20px rgba(0,0,0,.4);
}
.home-header-categories .home-category-marquee{padding:0;margin:0;overflow:hidden;background:transparent;border:0;}
.home-header-categories .home-category-marquee::before,
.home-header-categories .home-category-marquee::after{display:none!important;}
.home-header-categories .home-category-marquee__track{
    display:flex;
    align-items:flex-start;
    gap:24px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:2px 4px 4px;
    animation:none!important;
}
.home-header-categories .home-category-marquee__track::-webkit-scrollbar{display:none;}
.home-header-categories .home-category-pill{
    flex:0 0 92px;
    width:92px;
    min-width:92px;
    border:0;
    background:transparent;
    padding:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:7px;
    box-shadow:none;
}
.home-header-categories .home-category-pill:hover{transform:translateY(-2px);background:transparent;}
.home-header-categories .home-category-pill__icon{
    width:72px;
    height:72px;
    border-radius:14px;
    background:#f6f4ed;
    border:1px solid #e8e3d6;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:5px;
}
.home-header-categories .home-category-pill__icon img{width:100%;height:100%;object-fit:contain;display:block;}
.home-header-categories .home-category-pill__icon i{font-size:30px;color:#8e772e;}
.home-header-categories .home-category-pill__text{width:100%;text-align:center;display:block;line-height:1.15;}
.home-header-categories .home-category-pill__text strong{font-size:11px;color:#111;display:block;white-space:normal;}
.home-header-categories .home-category-pill__text small{display:none;}
.home-header-categories__arrow{
    width:42px;height:42px;border-radius:6px;border:1px solid #d8d3c6;background:#fff;color:#111;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:20px;
}
.home-header-categories__arrow:hover{background:#c9a84c;border-color:#c9a84c;}
body[data-page="home"] .home-managed-hero{margin-top:0;}
body[data-page="home"] .home-commercial-banners{padding-top:28px;}

@media(max-width:1100px){
    body[data-page="home"]{--home-offers-height:54px;--home-main-header-height:72px;--home-categories-height:116px;}
    .home-offers-bar__inner{grid-template-columns:220px 1fr;gap:16px;width:96%;}
    .home-offers-bar__copy{font-size:12px;white-space:normal;}
    .home-offers-form{grid-template-columns:1fr 1fr auto;}
    .home-offers-form small{display:none;}
    body[data-page="home"] > header.home-main-header{padding-left:4%;padding-right:4%;}
    body[data-page="home"] > header.home-main-header .main-nav{gap:14px;}
    body[data-page="home"] > header.home-main-header .main-nav a{font-size:11px;}
    .home-header-categories{padding-left:3%;padding-right:3%;grid-template-columns:40px minmax(0,1fr) 40px;gap:7px;}
    .home-header-categories .home-category-pill{flex-basis:84px;width:84px;min-width:84px;}
    .home-header-categories .home-category-pill__icon{width:64px;height:64px;}
}

@media(max-width:760px){
    body[data-page="home"]{--home-offers-height:92px;--home-main-header-height:70px;--home-categories-height:104px;}
    .home-offers-bar{background:#111;}
    .home-offers-bar__inner{display:flex;flex-direction:column;justify-content:center;gap:7px;width:94%;}
    .home-offers-bar__copy{font-size:11px;text-align:center;}
    .home-offers-form{width:100%;display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr) auto;gap:5px;}
    .home-offers-form input{height:34px;font-size:11px;padding:0 9px;}
    .home-offers-form button{height:34px;font-size:10px;padding:0 10px;background:#c9a84c;color:#111;border-color:#c9a84c;}
    body[data-page="home"] > header.home-main-header{grid-template-columns:auto 1fr auto;padding:9px 4%;}
    body[data-page="home"] > header.home-main-header .logo img{height:37px;}
    body[data-page="home"] > header.home-main-header .main-nav{top:var(--home-main-header-height);}
    .home-header-categories{grid-template-columns:34px minmax(0,1fr) 34px;padding:8px 2%;gap:4px;}
    .home-header-categories__arrow{width:32px;height:38px;}
    .home-header-categories .home-category-marquee__track{gap:12px;}
    .home-header-categories .home-category-pill{flex-basis:70px;width:70px;min-width:70px;gap:4px;}
    .home-header-categories .home-category-pill__icon{width:56px;height:56px;border-radius:10px;}
    .home-header-categories .home-category-pill__text strong{font-size:9px;}
    body[data-page="home"] .home-managed-hero{min-height:460px;}
}

/* =========================================================
   Fase 34.20 — Correção definitiva do header Home 3 níveis
   Evita sobreposição, mantém proporções e compacta categorias.
   ========================================================= */
body[data-page="home"]{
    --home-offers-height: 52px;
    --home-main-header-height: 70px;
    --home-categories-height: 104px;
    --home-stacked-header-height: calc(var(--home-offers-height) + var(--home-main-header-height) + var(--home-categories-height));
    padding-top: var(--home-stacked-header-height) !important;
}
body[data-page="home"] .home-offers-bar{
    position:fixed !important;
    inset:0 0 auto 0 !important;
    height:var(--home-offers-height) !important;
    z-index:3100 !important;
    background:#c9a84c !important;
    color:#111 !important;
}
body[data-page="home"] .home-offers-bar__inner{
    width:min(1380px,94%) !important;
    grid-template-columns:minmax(270px,.8fr) minmax(0,1.8fr) !important;
    gap:22px !important;
}
body[data-page="home"] .home-offers-bar__copy{
    color:#111 !important;
    font-size:13px !important;
}
body[data-page="home"] .home-offers-bar__copy strong{color:#111 !important;}
body[data-page="home"] .home-offers-form{
    grid-template-columns:minmax(180px,1fr) minmax(170px,.9fr) auto minmax(220px,.85fr) !important;
    min-width:0 !important;
}
body[data-page="home"] .home-offers-form input{min-width:0 !important;}
body[data-page="home"] .home-offers-form small{color:#111 !important;}

body[data-page="home"] > header.home-main-header{
    position:fixed !important;
    top:var(--home-offers-height) !important;
    left:0 !important;
    right:0 !important;
    height:var(--home-main-header-height) !important;
    min-height:var(--home-main-header-height) !important;
    padding:10px 7% !important;
    z-index:3090 !important;
    grid-template-columns:auto minmax(0,1fr) auto !important;
    align-items:center !important;
}
body[data-page="home"] > header.home-main-header .logo img{height:40px !important;}
body[data-page="home"] > header.home-main-header .main-nav{
    justify-self:start !important;
    justify-content:flex-start !important;
    gap:8px !important;
    min-width:0 !important;
    flex-wrap:nowrap !important;
}
body[data-page="home"] > header.home-main-header .main-nav a{
    font-size:11px !important;
    padding:8px 9px !important;
    white-space:nowrap !important;
}
body[data-page="home"] > header.home-main-header .header-tools{justify-self:end !important;}

body[data-page="home"] .home-header-categories{
    position:fixed !important;
    top:calc(var(--home-offers-height) + var(--home-main-header-height)) !important;
    left:0 !important;
    right:0 !important;
    height:var(--home-categories-height) !important;
    z-index:3080 !important;
    padding:8px 5% !important;
    grid-template-columns:38px minmax(0,1fr) 38px !important;
    gap:10px !important;
    background:#fff !important;
    overflow:hidden !important;
}
body[data-page="home"] .home-header-categories__arrow{
    width:36px !important;
    height:36px !important;
    border-radius:7px !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee,
body[data-page="home"] .home-header-categories .home-category-marquee__track{
    min-width:0 !important;
    max-width:100% !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track{
    align-items:center !important;
    gap:18px !important;
    padding:0 4px !important;
    height:88px !important;
}
body[data-page="home"] .home-header-categories .home-category-pill{
    flex:0 0 74px !important;
    width:74px !important;
    min-width:74px !important;
    height:86px !important;
    padding:2px !important;
    margin:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    justify-content:center !important;
    gap:5px !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon{
    width:58px !important;
    height:58px !important;
    min-width:58px !important;
    border-radius:12px !important;
    border:1px solid #e7e2d5 !important;
    background:#faf9f5 !important;
    padding:5px !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text strong{
    font-size:9px !important;
    line-height:1.1 !important;
    max-width:74px !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    white-space:nowrap !important;
}
body[data-page="home"] .home-managed-hero{
    margin-top:0 !important;
    position:relative !important;
    z-index:1 !important;
}
body[data-page="home"] .home-commercial-banners{position:relative !important;z-index:2 !important;}

@media (max-width:1180px){
    body[data-page="home"]{--home-offers-height:56px;--home-main-header-height:68px;--home-categories-height:96px;}
    body[data-page="home"] .home-offers-bar__inner{width:96% !important;grid-template-columns:210px minmax(0,1fr) !important;gap:12px !important;}
    body[data-page="home"] .home-offers-bar__copy{font-size:11px !important;white-space:normal !important;}
    body[data-page="home"] .home-offers-form{grid-template-columns:1fr 1fr auto !important;}
    body[data-page="home"] .home-offers-form small{display:none !important;}
    body[data-page="home"] > header.home-main-header{padding-left:4% !important;padding-right:4% !important;}
    body[data-page="home"] > header.home-main-header .main-nav{gap:2px !important;}
    body[data-page="home"] > header.home-main-header .main-nav a{font-size:10px !important;padding:7px 6px !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track{height:80px !important;gap:14px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill{height:78px !important;flex-basis:68px !important;width:68px !important;min-width:68px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__icon{width:52px !important;height:52px !important;min-width:52px !important;}
}

@media (max-width:760px){
    body[data-page="home"]{--home-offers-height:112px;--home-main-header-height:66px;--home-categories-height:92px;}
    body[data-page="home"] .home-offers-bar__inner{display:flex !important;flex-direction:column !important;justify-content:center !important;gap:6px !important;}
    body[data-page="home"] .home-offers-bar__copy{text-align:center !important;font-size:11px !important;}
    body[data-page="home"] .home-offers-form{width:100% !important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important;gap:5px !important;}
    body[data-page="home"] .home-offers-form button{grid-column:1/-1 !important;width:100% !important;}
    body[data-page="home"] > header.home-main-header{padding:8px 3% !important;}
    body[data-page="home"] > header.home-main-header .main-nav{top:var(--home-main-header-height) !important;}
    body[data-page="home"] .home-header-categories{padding:6px 2% !important;grid-template-columns:30px minmax(0,1fr) 30px !important;gap:4px !important;}
    body[data-page="home"] .home-header-categories__arrow{width:28px !important;height:34px !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track{height:78px !important;gap:10px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill{height:76px !important;flex-basis:62px !important;width:62px !important;min-width:62px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__icon{width:48px !important;height:48px !important;min-width:48px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__text strong{font-size:8px !important;max-width:62px !important;}
}

/* =========================================================
   Fase 34.21 — Categorias centralizadas / faixa preta
   ========================================================= */
body[data-page="home"] .home-header-categories{
    background:#0b0b0b !important;
    border-bottom:1px solid rgba(201,168,76,.32) !important;
    box-shadow:0 8px 22px -18px rgba(0,0,0,.85) !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track{
    width:100% !important;
    justify-content:safe center !important;
    align-items:center !important;
    margin:0 auto !important;
}
body[data-page="home"] .home-header-categories .home-category-pill{
    color:#fff !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon{
    background:#fff !important;
    border:1px solid rgba(201,168,76,.48) !important;
    box-shadow:0 3px 10px rgba(0,0,0,.16) !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon img{
    background:#fff !important;
    object-fit:contain !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon i{
    color:#c9a84c !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text strong{
    color:#fff !important;
    font-weight:700 !important;
}
body[data-page="home"] .home-header-categories .home-category-pill:hover .home-category-pill__text strong{
    color:#d9b84f !important;
}
body[data-page="home"] .home-header-categories__arrow{
    background:#111 !important;
    color:#fff !important;
    border-color:rgba(201,168,76,.6) !important;
}
body[data-page="home"] .home-header-categories__arrow:hover{
    background:#c9a84c !important;
    color:#111 !important;
    border-color:#c9a84c !important;
}

/* =========================================================
   Fase 34.22 — Home compacta, categorias circulares sem setas
   ========================================================= */
body[data-page="home"]{
    --home-categories-height: 88px !important;
}
body[data-page="home"] .home-header-categories{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:6px 4% !important;
    height:var(--home-categories-height) !important;
    background:#0b0b0b !important;
    overflow:hidden !important;
}
body[data-page="home"] .home-header-categories__arrow{
    display:none !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
    width:100% !important;
    max-width:1400px !important;
    display:flex !important;
    justify-content:center !important;
    overflow:hidden !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track{
    width:max-content !important;
    max-width:100% !important;
    height:76px !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    gap:16px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scroll-snap-type:x proximity !important;
    scrollbar-width:none !important;
    padding:0 8px !important;
    margin:0 auto !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track::-webkit-scrollbar{display:none !important;}
body[data-page="home"] .home-header-categories .home-category-pill{
    flex:0 0 66px !important;
    width:66px !important;
    min-width:66px !important;
    height:74px !important;
    gap:4px !important;
    scroll-snap-align:center !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon{
    width:52px !important;
    height:52px !important;
    min-width:52px !important;
    border-radius:50% !important;
    background:#fff !important;
    border:2px solid rgba(201,168,76,.55) !important;
    padding:5px !important;
    overflow:hidden !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon img{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
    border-radius:50% !important;
    background:#fff !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text strong{
    font-size:8px !important;
    line-height:1.05 !important;
    max-width:66px !important;
    color:#fff !important;
}
body[data-page="home"] .home-managed-hero{
    min-height:430px !important;
    height:430px !important;
}
body[data-page="home"] .home-managed-hero .managed-hero-slide{
    min-height:430px !important;
    height:430px !important;
    padding-top:42px !important;
    padding-bottom:42px !important;
}
body[data-page="home"] .home-managed-hero .managed-banner__content h1{
    font-size:clamp(2.1rem,4.2vw,4.25rem) !important;
}
body[data-page="home"] .home-commercial-banners{
    padding-top:18px !important;
}
/* Busca: sempre acima do header empilhado e com área clicável. */
body[data-page="home"] .search-overlay{
    z-index:4000 !important;
    top:0 !important;
    inset:0 !important;
    width:auto !important;
    padding:calc(var(--home-offers-height) + var(--home-main-header-height) + 18px) 20px 30px !important;
    background:rgba(0,0,0,.62) !important;
    backdrop-filter:blur(5px) !important;
    align-items:flex-start !important;
    justify-content:center !important;
    pointer-events:auto !important;
}
body[data-page="home"] .search-modal{
    width:min(680px,100%) !important;
    border-radius:14px !important;
    padding:18px 52px 18px 18px !important;
}
@media(max-width:1180px){
    body[data-page="home"]{--home-categories-height:84px !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track{justify-content:flex-start !important;gap:14px !important;height:72px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill{flex-basis:62px !important;width:62px !important;min-width:62px !important;height:70px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__icon{width:48px !important;height:48px !important;min-width:48px !important;}
    body[data-page="home"] .home-managed-hero,
    body[data-page="home"] .home-managed-hero .managed-hero-slide{height:400px !important;min-height:400px !important;}
}
@media(max-width:760px){
    body[data-page="home"]{--home-categories-height:82px !important;}
    body[data-page="home"] .home-header-categories{padding:5px 2% !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track{justify-content:flex-start !important;gap:12px !important;padding:0 4px !important;}
    body[data-page="home"] .home-managed-hero,
    body[data-page="home"] .home-managed-hero .managed-hero-slide{height:360px !important;min-height:360px !important;}
    body[data-page="home"] .home-managed-hero .managed-hero-slide{padding:32px 22px !important;align-items:flex-end !important;}
}


/* =========================================================
   Fase 34.23 — remove faixa de novidades e corrige categorias
   ========================================================= */
body[data-page="home"]{
    --home-offers-height:0px !important;
    --home-main-header-height:72px !important;
    --home-categories-height:96px !important;
    --home-stacked-header-height:calc(var(--home-main-header-height) + var(--home-categories-height)) !important;
    padding-top:var(--home-stacked-header-height) !important;
}
body[data-page="home"] .home-offers-bar{
    display:none !important;
}
body[data-page="home"] > header.home-main-header{
    top:0 !important;
    height:var(--home-main-header-height) !important;
    min-height:var(--home-main-header-height) !important;
    z-index:2205 !important;
}
body[data-page="home"] .home-header-categories{
    top:var(--home-main-header-height) !important;
    height:var(--home-categories-height) !important;
    min-height:var(--home-categories-height) !important;
    padding:8px 4% !important;
    z-index:2200 !important;
    overflow:hidden !important;
    box-sizing:border-box !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
    height:100% !important;
    display:flex !important;
    align-items:center !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track{
    height:80px !important;
    min-height:80px !important;
    align-items:center !important;
    padding:0 8px !important;
    overflow-y:visible !important;
}
body[data-page="home"] .home-header-categories .home-category-pill{
    height:78px !important;
    min-height:78px !important;
    justify-content:center !important;
    overflow:visible !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon{
    width:54px !important;
    height:54px !important;
    min-width:54px !important;
    min-height:54px !important;
    flex:0 0 54px !important;
    border-radius:50% !important;
    background:#fff !important;
    overflow:hidden !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon img{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
    display:block !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text{
    min-height:14px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text strong{
    line-height:1.05 !important;
    margin:0 !important;
}

@media(max-width:1180px){
    body[data-page="home"]{
        --home-main-header-height:68px !important;
        --home-categories-height:92px !important;
    }
    body[data-page="home"] .home-header-categories .home-category-marquee__track{
        height:76px !important;
        min-height:76px !important;
    }
    body[data-page="home"] .home-header-categories .home-category-pill{
        height:74px !important;
        min-height:74px !important;
    }
    body[data-page="home"] .home-header-categories .home-category-pill__icon{
        width:50px !important;
        height:50px !important;
        min-width:50px !important;
        min-height:50px !important;
        flex-basis:50px !important;
    }
}
@media(max-width:760px){
    body[data-page="home"]{
        --home-main-header-height:66px !important;
        --home-categories-height:86px !important;
    }
    body[data-page="home"] .home-header-categories{
        padding:6px 2% !important;
    }
    body[data-page="home"] .home-header-categories .home-category-marquee__track{
        height:72px !important;
        min-height:72px !important;
        justify-content:flex-start !important;
    }
    body[data-page="home"] .home-header-categories .home-category-pill{
        height:70px !important;
        min-height:70px !important;
    }
    body[data-page="home"] .home-header-categories .home-category-pill__icon{
        width:46px !important;
        height:46px !important;
        min-width:46px !important;
        min-height:46px !important;
        flex-basis:46px !important;
    }
}

/* =========================================================
   Fase 34.24 — faixa de categorias esmaecida e ícones sem corte
   ========================================================= */
body[data-page="home"]{
    --home-categories-height:108px !important;
    --home-stacked-header-height:calc(var(--home-main-header-height) + var(--home-categories-height)) !important;
}
body[data-page="home"] .home-header-categories{
    height:var(--home-categories-height) !important;
    min-height:var(--home-categories-height) !important;
    padding:10px 4% 12px !important;
    background:linear-gradient(180deg,#171717 0%,#101010 100%) !important;
    border-bottom:1px solid rgba(201,168,76,.20) !important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.025), 0 10px 24px -20px rgba(0,0,0,.9) !important;
    overflow:visible !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
    height:100% !important;
    min-height:0 !important;
    padding:0 !important;
    margin:0 !important;
    overflow:visible !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee::before,
body[data-page="home"] .home-header-categories .home-category-marquee::after{
    display:none !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track{
    height:92px !important;
    min-height:92px !important;
    padding:4px 10px 2px !important;
    margin:0 auto !important;
    overflow-x:auto !important;
    overflow-y:visible !important;
    align-items:flex-start !important;
    justify-content:safe center !important;
    box-sizing:border-box !important;
}
body[data-page="home"] .home-header-categories .home-category-pill{
    height:86px !important;
    min-height:86px !important;
    padding:2px 0 0 !important;
    margin:0 !important;
    justify-content:flex-start !important;
    align-items:center !important;
    gap:6px !important;
    overflow:visible !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon{
    width:58px !important;
    height:58px !important;
    min-width:58px !important;
    min-height:58px !important;
    flex:0 0 58px !important;
    border-radius:50% !important;
    background:#fff !important;
    border:1px solid rgba(201,168,76,.42) !important;
    padding:5px !important;
    overflow:hidden !important;
    box-sizing:border-box !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon img{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
    object-position:center !important;
    border-radius:50% !important;
    display:block !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text{
    height:16px !important;
    min-height:16px !important;
    overflow:visible !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text strong{
    color:rgba(255,255,255,.78) !important;
    font-size:8.5px !important;
    line-height:1.1 !important;
}
body[data-page="home"] .home-header-categories .home-category-pill:hover .home-category-pill__text strong{
    color:#d5b34a !important;
}
@media(max-width:1180px){
    body[data-page="home"]{--home-categories-height:102px !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track{height:86px !important;min-height:86px !important;justify-content:flex-start !important;}
    body[data-page="home"] .home-header-categories .home-category-pill{height:82px !important;min-height:82px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__icon{width:54px !important;height:54px !important;min-width:54px !important;min-height:54px !important;flex-basis:54px !important;}
}
@media(max-width:760px){
    body[data-page="home"]{--home-categories-height:96px !important;}
    body[data-page="home"] .home-header-categories{padding:8px 2% 10px !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track{height:80px !important;min-height:80px !important;padding:3px 4px 1px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill{height:76px !important;min-height:76px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__icon{width:50px !important;height:50px !important;min-width:50px !important;min-height:50px !important;flex-basis:50px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__text strong{font-size:8px !important;}
}


/* =========================================================
   Fase 34.25 — categorias abaixo dos banners, ícones em BG branco
   ========================================================= */
body[data-page="home"]{
    --home-categories-height:0px !important;
    --home-stacked-header-height:var(--home-main-header-height) !important;
    padding-top:var(--home-main-header-height) !important;
}
body[data-page="home"] .home-header-categories{
    position:relative !important;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    z-index:1 !important;
    width:100% !important;
    height:auto !important;
    min-height:132px !important;
    margin:0 !important;
    padding:22px 5% 20px !important;
    background:#f5f4ef !important;
    border-top:1px solid #e6e2d7 !important;
    border-bottom:1px solid #e6e2d7 !important;
    box-shadow:none !important;
    overflow:hidden !important;
    display:block !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    padding:0 !important;
    margin:0 !important;
    overflow:hidden !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track{
    width:max-content !important;
    max-width:100% !important;
    height:auto !important;
    min-height:88px !important;
    padding:2px 8px 4px !important;
    margin:0 auto !important;
    display:flex !important;
    align-items:flex-start !important;
    justify-content:center !important;
    gap:18px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scrollbar-width:none !important;
    box-sizing:border-box !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track::-webkit-scrollbar{display:none !important;}
body[data-page="home"] .home-header-categories .home-category-pill{
    flex:0 0 72px !important;
    width:72px !important;
    min-width:72px !important;
    height:auto !important;
    min-height:84px !important;
    padding:0 !important;
    margin:0 !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:7px !important;
    overflow:visible !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon{
    width:64px !important;
    height:64px !important;
    min-width:64px !important;
    min-height:64px !important;
    flex:0 0 64px !important;
    border-radius:50% !important;
    background:#fff !important;
    border:1px solid rgba(201,168,76,.45) !important;
    padding:7px !important;
    overflow:hidden !important;
    box-sizing:border-box !important;
    box-shadow:0 2px 10px rgba(0,0,0,.05) !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon img{
    width:100% !important;
    height:100% !important;
    display:block !important;
    object-fit:contain !important;
    object-position:center !important;
    border-radius:0 !important;
    background:#fff !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon i{
    color:#222 !important;
    font-size:26px !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text{
    width:100% !important;
    height:auto !important;
    min-height:18px !important;
    text-align:center !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text strong{
    color:#222 !important;
    font-size:9px !important;
    line-height:1.15 !important;
    font-weight:700 !important;
    white-space:normal !important;
}
body[data-page="home"] .home-header-categories .home-category-pill:hover .home-category-pill__text strong{
    color:#b48e23 !important;
}
@media(max-width:1180px){
    body[data-page="home"] .home-header-categories{padding:18px 3% 16px !important;min-height:124px !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track{justify-content:flex-start !important;gap:16px !important;}
}
@media(max-width:760px){
    body[data-page="home"] .home-header-categories{padding:16px 12px 14px !important;min-height:112px !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee{overflow:hidden !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track{justify-content:flex-start !important;gap:13px !important;padding:2px 2px 4px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill{flex-basis:64px !important;width:64px !important;min-width:64px !important;min-height:78px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__icon{width:56px !important;height:56px !important;min-width:56px !important;min-height:56px !important;flex-basis:56px !important;padding:6px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__text strong{font-size:8.5px !important;}
}


/* =========================================================
   Fase 34.26 — banners secundários compactos + categorias em abas
   ========================================================= */
body[data-page="home"] .home-commercial-banners{
    margin-top:-66px !important;
    padding:0 8% 14px !important;
    z-index:4 !important;
}
body[data-page="home"] .home-commercial-banners__grid{
    gap:16px !important;
}
body[data-page="home"] .home-banner-card{
    min-height:158px !important;
    height:158px !important;
    border-radius:18px !important;
    padding:18px 20px !important;
    box-shadow:0 12px 30px rgba(15,23,42,.13) !important;
}
body[data-page="home"] .home-banner-card__kicker{
    margin-bottom:6px !important;
    font-size:9px !important;
}
body[data-page="home"] .home-banner-card h2{
    font-size:clamp(1.05rem,1.55vw,1.45rem) !important;
    margin-bottom:5px !important;
}
body[data-page="home"] .home-banner-card p{
    display:none !important;
}
body[data-page="home"] .home-banner-card__btn{
    min-height:32px !important;
    padding:7px 12px !important;
    font-size:9px !important;
}

body[data-page="home"] .home-header-categories{
    min-height:82px !important;
    padding:12px 6% 13px !important;
    background:#f7f6f2 !important;
    border-top:1px solid #e5e1d7 !important;
    border-bottom:1px solid #e5e1d7 !important;
    overflow:hidden !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
    overflow:hidden !important;
    justify-content:center !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track{
    width:100% !important;
    max-width:100% !important;
    min-height:48px !important;
    padding:2px 0 !important;
    gap:10px !important;
    align-items:center !important;
    justify-content:flex-start !important;
    overflow-x:auto !important;
    scroll-snap-type:x proximity !important;
}
body[data-page="home"] .home-header-categories .home-category-pill{
    flex:0 0 auto !important;
    width:auto !important;
    min-width:108px !important;
    min-height:46px !important;
    height:46px !important;
    padding:0 14px !important;
    border:1px solid #dedbd2 !important;
    border-radius:5px !important;
    background:#fff !important;
    display:inline-flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:center !important;
    gap:8px !important;
    color:#242424 !important;
    scroll-snap-align:start !important;
    transition:border-color .2s ease, background .2s ease, color .2s ease !important;
}
body[data-page="home"] .home-header-categories .home-category-pill:hover{
    transform:none !important;
    border-color:#c9a84c !important;
    background:#fffdf7 !important;
}
body[data-page="home"] .home-header-categories .home-category-pill--all{
    background:#111 !important;
    border-color:#111 !important;
    color:#d6b448 !important;
}
body[data-page="home"] .home-header-categories .home-category-pill--all:hover{
    background:#1b1b1b !important;
    border-color:#c9a84c !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon{
    width:auto !important;
    height:auto !important;
    min-width:18px !important;
    min-height:18px !important;
    flex:0 0 18px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    padding:0 !important;
    box-shadow:none !important;
    overflow:visible !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon img{
    display:none !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon i{
    color:#777 !important;
    font-size:17px !important;
}
body[data-page="home"] .home-header-categories .home-category-pill--all .home-category-pill__icon i{
    color:#d6b448 !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text{
    width:auto !important;
    height:auto !important;
    min-height:0 !important;
    display:block !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text strong{
    color:inherit !important;
    font-size:10px !important;
    line-height:1 !important;
    font-weight:700 !important;
    letter-spacing:.03em !important;
    text-transform:uppercase !important;
    white-space:nowrap !important;
}
body[data-page="home"] .home-header-categories .home-category-pill:hover .home-category-pill__text strong{
    color:#9a7412 !important;
}
body[data-page="home"] .home-header-categories .home-category-pill--all:hover .home-category-pill__text strong{
    color:#d6b448 !important;
}

@media (min-width:1440px){
    body[data-page="home"] .home-header-categories .home-category-marquee__track{
        justify-content:center !important;
    }
}
@media (max-width:1100px){
    body[data-page="home"] .home-commercial-banners{
        margin-top:-48px !important;
        padding-left:4% !important;
        padding-right:4% !important;
    }
    body[data-page="home"] .home-banner-card{
        min-height:145px !important;
        height:145px !important;
    }
    body[data-page="home"] .home-header-categories{
        padding-left:3% !important;
        padding-right:3% !important;
    }
}
@media (max-width:900px){
    body[data-page="home"] .home-commercial-banners__grid{
        grid-template-columns:repeat(3,minmax(220px,1fr)) !important;
        overflow-x:auto !important;
        scrollbar-width:none !important;
    }
    body[data-page="home"] .home-commercial-banners__grid::-webkit-scrollbar{display:none !important;}
    body[data-page="home"] .home-banner-card{
        min-height:135px !important;
        height:135px !important;
    }
}
@media (max-width:760px){
    body[data-page="home"] .home-commercial-banners{
        margin-top:-24px !important;
        padding:0 12px 10px !important;
    }
    body[data-page="home"] .home-commercial-banners__grid{
        grid-template-columns:repeat(3,minmax(205px,1fr)) !important;
        gap:10px !important;
    }
    body[data-page="home"] .home-banner-card{
        min-height:120px !important;
        height:120px !important;
        padding:14px !important;
        border-radius:14px !important;
    }
    body[data-page="home"] .home-header-categories{
        min-height:72px !important;
        padding:9px 10px 10px !important;
    }
    body[data-page="home"] .home-header-categories .home-category-pill{
        min-width:96px !important;
        height:42px !important;
        min-height:42px !important;
        padding:0 11px !important;
    }
    body[data-page="home"] .home-header-categories .home-category-pill__text strong{
        font-size:9px !important;
    }
}


/* =========================================================
   Fase 34.27 — restaura banners secundários + categorias estáveis
   ========================================================= */
body[data-page="home"] .home-commercial-banners{
    margin-top:-42px !important;
    padding:0 8% 20px !important;
    z-index:3 !important;
}
body[data-page="home"] .home-commercial-banners__grid{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:22px !important;
    overflow:visible !important;
}
body[data-page="home"] .home-banner-card{
    min-height:285px !important;
    height:auto !important;
    border-radius:28px !important;
    padding:30px !important;
    box-shadow:0 22px 52px rgba(15,23,42,.16) !important;
}
body[data-page="home"] .home-banner-card__kicker{
    margin-bottom:12px !important;
    font-size:12px !important;
}
body[data-page="home"] .home-banner-card h2{
    font-size:clamp(1.45rem,2vw,2rem) !important;
    margin-bottom:10px !important;
}
body[data-page="home"] .home-banner-card p{
    display:block !important;
    font-size:14px !important;
    line-height:1.55 !important;
    margin:0 0 18px !important;
}
body[data-page="home"] .home-banner-card__btn{
    min-height:40px !important;
    padding:10px 18px !important;
    font-size:12px !important;
}

/* Categorias: faixa limpa em formato de abas, sem setas/dots no meio. */
body[data-page="home"] .home-header-categories{
    min-height:84px !important;
    padding:14px 6% 15px !important;
    background:#f7f6f2 !important;
    border-top:1px solid #e5e1d7 !important;
    border-bottom:1px solid #e5e1d7 !important;
    overflow:hidden !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
    display:block !important;
    width:100% !important;
    overflow:hidden !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee > .carousel-controls{
    display:none !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track{
    display:flex !important;
    width:max-content !important;
    max-width:100% !important;
    min-height:48px !important;
    padding:2px 2px 4px !important;
    margin:0 auto !important;
    gap:10px !important;
    align-items:center !important;
    justify-content:flex-start !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scrollbar-width:none !important;
    scroll-snap-type:x proximity !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track::-webkit-scrollbar{display:none !important;}
body[data-page="home"] .home-header-categories .home-category-pill{
    flex:0 0 auto !important;
    width:auto !important;
    min-width:118px !important;
    height:46px !important;
    min-height:46px !important;
    padding:0 14px !important;
    border:1px solid #dedbd2 !important;
    border-radius:5px !important;
    background:#fff !important;
    display:inline-flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:center !important;
    gap:8px !important;
    box-shadow:none !important;
    color:#242424 !important;
    scroll-snap-align:start !important;
    overflow:visible !important;
}
body[data-page="home"] .home-header-categories .home-category-pill:hover{
    transform:none !important;
    border-color:#c9a84c !important;
    background:#fffdf7 !important;
}
body[data-page="home"] .home-header-categories .home-category-pill--all{
    background:#111 !important;
    border-color:#111 !important;
    color:#d6b448 !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon{
    width:18px !important;
    height:18px !important;
    min-width:18px !important;
    min-height:18px !important;
    flex:0 0 18px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    padding:0 !important;
    box-shadow:none !important;
    overflow:visible !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon img{display:none !important;}
body[data-page="home"] .home-header-categories .home-category-pill__icon i{
    color:#777 !important;
    font-size:17px !important;
}
body[data-page="home"] .home-header-categories .home-category-pill--all .home-category-pill__icon i{color:#d6b448 !important;}
body[data-page="home"] .home-header-categories .home-category-pill__text{
    width:auto !important;
    height:auto !important;
    min-height:0 !important;
    overflow:visible !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text strong{
    color:inherit !important;
    font-size:10px !important;
    line-height:1 !important;
    font-weight:700 !important;
    letter-spacing:.025em !important;
    text-transform:uppercase !important;
    white-space:nowrap !important;
    overflow:visible !important;
    text-overflow:clip !important;
}
@media(min-width:1500px){
    body[data-page="home"] .home-header-categories .home-category-marquee__track{justify-content:center !important;}
}
@media(max-width:1100px){
    body[data-page="home"] .home-commercial-banners{padding-left:5% !important;padding-right:5% !important;}
    body[data-page="home"] .home-commercial-banners__grid{gap:16px !important;}
    body[data-page="home"] .home-banner-card{min-height:260px !important;padding:24px !important;}
    body[data-page="home"] .home-header-categories{padding-left:3% !important;padding-right:3% !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track{margin:0 !important;}
}
@media(max-width:900px){
    body[data-page="home"] .home-commercial-banners__grid{
        grid-template-columns:repeat(3,minmax(230px,1fr)) !important;
        overflow-x:auto !important;
        scrollbar-width:none !important;
    }
    body[data-page="home"] .home-commercial-banners__grid::-webkit-scrollbar{display:none !important;}
    body[data-page="home"] .home-banner-card{min-height:230px !important;}
}
@media(max-width:760px){
    body[data-page="home"] .home-commercial-banners{margin-top:-28px !important;padding:0 4% 14px !important;}
    body[data-page="home"] .home-banner-card{min-height:220px !important;border-radius:22px !important;padding:22px !important;}
    body[data-page="home"] .home-header-categories{min-height:72px !important;padding:10px 10px 11px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill{min-width:104px !important;height:42px !important;min-height:42px !important;padding:0 11px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__text strong{font-size:9px !important;}
}

/* =========================================================
   FASE 34.29 — BOTÕES COM LARGURA CONFORME O TEXTO
   ========================================================= */
.btn-det,
.btn-add,
.btn-orange,
.btn-highlight,
.home-banner-card__btn,
.delivery-geo-button,
.delivery-secondary-button,
.search-modal__bar button,
.filters button,
.filters .chip,
.account-session__button,
.auth-feedback-button,
.product-page-add-side,
.product-page-add,
a.btn-orange,
button.btn-orange {
    width: auto !important;
    min-width: max-content !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    white-space: nowrap !important;
}

.btn-group {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.btn-group .btn-det,
.btn-group .btn-add {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: max-content !important;
}

.btn-group .qty-inline-control {
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 118px !important;
}

/* CTAs que precisam continuar ocupando toda a largura do bloco */
#cartSidebar .btn-order,
#productCartDrawer .btn-order,
.checkout-next,
.checkout-submit,
.product-page-purchase-row,
.product-page-purchase-row .product-page-add-side.full-width,
.auth-submit.full-width {
    width: 100% !important;
    max-width: none !important;
}

/* Abas/categorias: largura baseada no rótulo, sem cortar texto */
body[data-page="home"] .home-header-categories .home-category-pill {
    width: auto !important;
    min-width: max-content !important;
    flex: 0 0 auto !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text strong {
    max-width: none !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

@media (max-width: 640px) {
    .btn-det,
    .btn-add,
    .btn-orange,
    .btn-highlight,
    .home-banner-card__btn,
    .delivery-geo-button,
    .delivery-secondary-button,
    .product-page-add-side,
    .product-page-add {
        min-width: 0 !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .btn-group {
        width: 100% !important;
    }
}

/* =========================================================
   FASE 34.30 — CATEGORIAS: ÁREA MAIOR + SETAS SOB DEMANDA
   ========================================================= */
body[data-page="home"] .home-header-categories{
    min-height:96px !important;
    padding:18px clamp(28px,6vw,96px) 19px !important;
    overflow:visible !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
    position:relative !important;
    display:flex !important;
    align-items:center !important;
    width:100% !important;
    min-width:0 !important;
    overflow:visible !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track{
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    min-height:56px !important;
    padding:5px 2px 7px !important;
    margin:0 !important;
    gap:12px !important;
    justify-content:flex-start !important;
    overflow-x:auto !important;
    overflow-y:visible !important;
    scroll-padding-inline:4px !important;
    overscroll-behavior-inline:contain !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track.is-fit{
    justify-content:center !important;
}
body[data-page="home"] .home-header-categories .home-category-pill{
    min-width:max-content !important;
    height:48px !important;
    min-height:48px !important;
    padding:0 15px !important;
    flex-shrink:0 !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text,
body[data-page="home"] .home-header-categories .home-category-pill__text strong{
    max-width:none !important;
    overflow:visible !important;
    text-overflow:clip !important;
    white-space:nowrap !important;
}
body[data-page="home"] .category-nav-button{
    position:absolute !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    z-index:8 !important;
    width:38px !important;
    min-width:38px !important;
    height:38px !important;
    padding:0 !important;
    border:1px solid #c9a84c !important;
    border-radius:7px !important;
    background:#fff !important;
    color:#111 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    cursor:pointer !important;
    box-shadow:0 4px 14px rgba(0,0,0,.08) !important;
}
body[data-page="home"] .category-nav-button--prev{left:-50px !important;}
body[data-page="home"] .category-nav-button--next{right:-50px !important;}
body[data-page="home"] .category-nav-button[hidden]{display:none !important;}
body[data-page="home"] .category-nav-button:disabled{
    opacity:.32 !important;
    cursor:default !important;
}
body[data-page="home"] .category-nav-button i{font-size:18px !important;}
@media(max-width:1100px){
    body[data-page="home"] .home-header-categories{padding-left:54px !important;padding-right:54px !important;}
    body[data-page="home"] .category-nav-button--prev{left:-44px !important;}
    body[data-page="home"] .category-nav-button--next{right:-44px !important;}
}
@media(max-width:760px){
    body[data-page="home"] .home-header-categories{min-height:82px !important;padding:12px 12px 13px !important;overflow:hidden !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track{min-height:50px !important;padding:4px 0 6px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill{height:44px !important;min-height:44px !important;padding:0 12px !important;}
    body[data-page="home"] .category-nav-button{display:none !important;}
}

/* =========================================================
   FASE 34.30 — CATEGORIAS: ÁREA MAIOR + SETAS SOB DEMANDA
   ========================================================= */
body[data-page="home"] .home-header-categories{min-height:96px !important;padding:18px clamp(28px,6vw,96px) 19px !important;overflow:visible !important;}
body[data-page="home"] .home-header-categories .home-category-marquee{position:relative !important;display:flex !important;align-items:center !important;width:100% !important;min-width:0 !important;overflow:visible !important;}
body[data-page="home"] .home-header-categories .home-category-marquee__track{width:100% !important;max-width:none !important;min-width:0 !important;min-height:56px !important;padding:5px 2px 7px !important;margin:0 !important;gap:12px !important;justify-content:flex-start !important;overflow-x:auto !important;overflow-y:visible !important;scroll-padding-inline:4px !important;overscroll-behavior-inline:contain !important;}
body[data-page="home"] .home-header-categories .home-category-marquee__track.is-fit{justify-content:center !important;}
body[data-page="home"] .home-header-categories .home-category-pill{min-width:max-content !important;height:48px !important;min-height:48px !important;padding:0 15px !important;flex-shrink:0 !important;}
body[data-page="home"] .home-header-categories .home-category-pill__text,body[data-page="home"] .home-header-categories .home-category-pill__text strong{max-width:none !important;overflow:visible !important;text-overflow:clip !important;white-space:nowrap !important;}
body[data-page="home"] .category-nav-button{position:absolute !important;top:50% !important;transform:translateY(-50%) !important;z-index:8 !important;width:38px !important;min-width:38px !important;height:38px !important;padding:0 !important;border:1px solid #c9a84c !important;border-radius:7px !important;background:#fff !important;color:#111 !important;display:flex !important;align-items:center !important;justify-content:center !important;cursor:pointer !important;box-shadow:0 4px 14px rgba(0,0,0,.08) !important;}
body[data-page="home"] .category-nav-button--prev{left:-50px !important;}body[data-page="home"] .category-nav-button--next{right:-50px !important;}body[data-page="home"] .category-nav-button[hidden]{display:none !important;}body[data-page="home"] .category-nav-button:disabled{opacity:.32 !important;cursor:default !important;}body[data-page="home"] .category-nav-button i{font-size:18px !important;}
@media(max-width:1100px){body[data-page="home"] .home-header-categories{padding-left:54px !important;padding-right:54px !important;}body[data-page="home"] .category-nav-button--prev{left:-44px !important;}body[data-page="home"] .category-nav-button--next{right:-44px !important;}}
@media(max-width:760px){body[data-page="home"] .home-header-categories{min-height:82px !important;padding:12px 12px 13px !important;overflow:hidden !important;}body[data-page="home"] .home-header-categories .home-category-marquee__track{min-height:50px !important;padding:4px 0 6px !important;}body[data-page="home"] .home-header-categories .home-category-pill{height:44px !important;min-height:44px !important;padding:0 12px !important;}body[data-page="home"] .category-nav-button{display:none !important;}}

/* =========================================================
   Fase 34.31 — categorias ocupando toda a largura, sem setas
   ========================================================= */
body[data-page="home"] .home-header-categories{
    width:100% !important;
    min-height:88px !important;
    padding:14px 34px 16px !important;
    overflow:hidden !important;
    box-sizing:border-box !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track{
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    min-height:54px !important;
    margin:0 !important;
    padding:3px 0 7px !important;
    gap:12px !important;
    justify-content:flex-start !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scrollbar-width:none !important;
    scroll-behavior:smooth !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track::-webkit-scrollbar{
    display:none !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track.is-fit{
    justify-content:flex-start !important;
}
body[data-page="home"] .home-header-categories .home-category-pill{
    flex:0 0 auto !important;
    min-width:max-content !important;
    height:44px !important;
    min-height:44px !important;
    padding:0 14px !important;
}
body[data-page="home"] .category-nav-button{
    display:none !important;
}
@media (max-width: 1100px){
    body[data-page="home"] .home-header-categories{
        padding-left:22px !important;
        padding-right:22px !important;
    }
}
@media (max-width: 760px){
    body[data-page="home"] .home-header-categories{
        min-height:80px !important;
        padding:11px 12px 13px !important;
    }
    body[data-page="home"] .home-header-categories .home-category-marquee__track{
        min-height:48px !important;
        gap:9px !important;
    }
}

/* =========================================================
   Fase 34.32 — categorias centralizadas na Home
   ========================================================= */
body[data-page="home"] .home-header-categories{
    display:flex !important;
    justify-content:center !important;
    padding-left:24px !important;
    padding-right:24px !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track,
body[data-page="home"] .home-header-categories .home-category-marquee__track.is-fit{
    width:max-content !important;
    max-width:100% !important;
    min-width:0 !important;
    margin:0 auto !important;
    justify-content:center !important;
    overflow-x:auto !important;
    scroll-padding-inline:12px !important;
}
@media (max-width:760px){
    body[data-page="home"] .home-header-categories{
        justify-content:flex-start !important;
        padding-left:12px !important;
        padding-right:12px !important;
    }
    body[data-page="home"] .home-header-categories .home-category-marquee{
        justify-content:flex-start !important;
    }
    body[data-page="home"] .home-header-categories .home-category-marquee__track,
    body[data-page="home"] .home-header-categories .home-category-marquee__track.is-fit{
        width:100% !important;
        max-width:none !important;
        margin:0 !important;
        justify-content:flex-start !important;
    }
}

/* =========================================================
   Fase 34.33 — categorias visuais com imagens dedicadas
   Mantém a faixa abaixo dos banners, com círculos grandes e
   imagens fornecidas pela Tek Shine.
   ========================================================= */
body[data-page="home"] .home-header-categories{
    position:relative !important;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    z-index:1 !important;
    width:100% !important;
    min-height:148px !important;
    height:auto !important;
    margin:0 !important;
    padding:18px clamp(28px,5vw,80px) 16px !important;
    background:#fff !important;
    border-top:1px solid #ece7dc !important;
    border-bottom:1px solid #ece7dc !important;
    box-shadow:none !important;
    overflow:hidden !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
    width:100% !important;
    max-width:1500px !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    overflow:hidden !important;
    margin:0 auto !important;
    padding:0 !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track,
body[data-page="home"] .home-header-categories .home-category-marquee__track.is-fit{
    width:max-content !important;
    max-width:100% !important;
    min-width:0 !important;
    min-height:112px !important;
    display:flex !important;
    align-items:flex-start !important;
    justify-content:center !important;
    gap:22px !important;
    margin:0 auto !important;
    padding:4px 2px 2px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scrollbar-width:none !important;
    scroll-behavior:smooth !important;
    scroll-snap-type:x proximity !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track::-webkit-scrollbar{display:none !important;}
body[data-page="home"] .home-header-categories .home-category-pill{
    flex:0 0 82px !important;
    width:82px !important;
    min-width:82px !important;
    max-width:82px !important;
    height:auto !important;
    min-height:108px !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    color:#151515 !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:8px !important;
    overflow:visible !important;
    scroll-snap-align:center !important;
    transition:transform .18s ease !important;
}
body[data-page="home"] .home-header-categories .home-category-pill:hover{
    transform:translateY(-3px) !important;
    background:transparent !important;
    border-color:transparent !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon{
    width:78px !important;
    height:78px !important;
    min-width:78px !important;
    min-height:78px !important;
    flex:0 0 78px !important;
    border-radius:50% !important;
    background:#fff !important;
    border:1px solid rgba(201,168,76,.58) !important;
    box-shadow:0 5px 15px rgba(18,18,18,.08) !important;
    padding:0 !important;
    overflow:hidden !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    box-sizing:border-box !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon img{
    display:block !important;
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    max-height:none !important;
    object-fit:cover !important;
    object-position:center !important;
    border-radius:50% !important;
    background:#fff !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon i{
    display:flex !important;
    color:#c9a84c !important;
    font-size:30px !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text{
    width:100% !important;
    height:auto !important;
    min-height:18px !important;
    text-align:center !important;
    overflow:visible !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text strong{
    display:block !important;
    width:100% !important;
    max-width:82px !important;
    color:#111 !important;
    font-size:10px !important;
    line-height:1.12 !important;
    font-weight:700 !important;
    letter-spacing:0 !important;
    text-transform:none !important;
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
}
body[data-page="home"] .home-header-categories .home-category-pill:hover .home-category-pill__text strong{
    color:#a98218 !important;
}
body[data-page="home"] .category-nav-button,
body[data-page="home"] .home-header-categories__arrow,
body[data-page="home"] .home-header-categories .carousel-controls{
    display:none !important;
}
@media(max-width:1200px){
    body[data-page="home"] .home-header-categories{padding-left:22px !important;padding-right:22px !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee{justify-content:flex-start !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track,
    body[data-page="home"] .home-header-categories .home-category-marquee__track.is-fit{
        width:100% !important;
        max-width:none !important;
        justify-content:flex-start !important;
        margin:0 !important;
        gap:18px !important;
    }
}
@media(max-width:760px){
    body[data-page="home"] .home-header-categories{min-height:126px !important;padding:14px 12px 12px !important;}
    body[data-page="home"] .home-header-categories .home-category-marquee__track,
    body[data-page="home"] .home-header-categories .home-category-marquee__track.is-fit{min-height:98px !important;gap:14px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill{flex-basis:70px !important;width:70px !important;min-width:70px !important;max-width:70px !important;min-height:96px !important;gap:6px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__icon{width:66px !important;height:66px !important;min-width:66px !important;min-height:66px !important;flex-basis:66px !important;}
    body[data-page="home"] .home-header-categories .home-category-pill__text strong{max-width:70px !important;font-size:9px !important;}
}

/* =========================================================
   FASE 34.34 — Categorias estilo "stories" abaixo do header
   ========================================================= */
body[data-page="home"]{
  --home-categories-height: 142px !important;
  --home-stacked-header-height: calc(var(--home-main-header-height) + var(--home-categories-height)) !important;
}
body[data-page="home"] .home-header-categories{
  position: relative !important;
  z-index: 24 !important;
  width: 100% !important;
  height: var(--home-categories-height) !important;
  min-height: var(--home-categories-height) !important;
  margin: 0 !important;
  padding: 12px 48px 10px !important;
  background: #fff !important;
  border: 0 !important;
  border-bottom: 1px solid #ece8df !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.04) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee{
  position: relative !important;
  width: min(1480px, 100%) !important;
  height: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee::before,
body[data-page="home"] .home-header-categories .home-category-marquee::after{
  display:none !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track{
  width: 100% !important;
  height: 118px !important;
  min-height: 118px !important;
  padding: 2px 10px 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x proximity !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  box-sizing: border-box !important;
}
body[data-page="home"] .home-header-categories .home-category-marquee__track::-webkit-scrollbar{display:none !important;}
body[data-page="home"] .home-header-categories .home-category-pill{
  flex: 0 0 82px !important;
  width: 82px !important;
  min-width: 82px !important;
  height: 112px !important;
  min-height: 112px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 7px !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  scroll-snap-align: start !important;
  overflow: visible !important;
  transform: none !important;
}
body[data-page="home"] .home-header-categories .home-category-pill:hover{transform:translateY(-2px) !important;}
body[data-page="home"] .home-header-categories .home-category-pill__icon{
  width: 78px !important;
  height: 78px !important;
  min-width: 78px !important;
  min-height: 78px !important;
  flex: 0 0 78px !important;
  padding: 4px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 2px solid #c9a84c !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.08) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 50% !important;
  display: block !important;
  background:#fff !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__icon i{
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;
  color:#8d762d !important;font-size:30px !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text{
  width: 100% !important;
  height: auto !important;
  min-height: 22px !important;
  display: block !important;
  text-align: center !important;
  overflow: visible !important;
}
body[data-page="home"] .home-header-categories .home-category-pill__text strong{
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  color: #151515 !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.12 !important;
  white-space: normal !important;
  text-transform: none !important;
}
body[data-page="home"] .home-header-categories .home-category-pill:hover .home-category-pill__text strong{color:#9d7c18 !important;}

/* passadores no estilo Instagram: pequenos, circulares e sobrepostos */
body[data-page="home"] .home-header-categories .category-nav-button{
  position: absolute !important;
  top: 48% !important;
  transform: translateY(-50%) !important;
  z-index: 8 !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: 1px solid #ddd8cb !important;
  background: rgba(255,255,255,.96) !important;
  color: #2d2d2d !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.14) !important;
  cursor: pointer !important;
  transition: opacity .18s ease, transform .18s ease, background .18s ease !important;
}
body[data-page="home"] .home-header-categories .category-nav-button--prev{left:-14px !important;}
body[data-page="home"] .home-header-categories .category-nav-button--next{right:-14px !important;}
body[data-page="home"] .home-header-categories .category-nav-button:hover:not(:disabled){background:#fff !important;transform:translateY(-50%) scale(1.06) !important;}
body[data-page="home"] .home-header-categories .category-nav-button:disabled{opacity:.22 !important;cursor:default !important;}
body[data-page="home"] .home-header-categories .category-nav-button[hidden]{display:none !important;}

/* a hero começa imediatamente depois da faixa de categorias */
body[data-page="home"] .home-managed-hero{margin-top:0 !important;}

@media(max-width:1100px){
  body[data-page="home"]{--home-categories-height:132px !important;}
  body[data-page="home"] .home-header-categories{padding:10px 36px 8px !important;}
  body[data-page="home"] .home-header-categories .home-category-marquee__track{height:108px !important;gap:15px !important;}
  body[data-page="home"] .home-header-categories .home-category-pill{flex-basis:74px !important;width:74px !important;min-width:74px !important;height:104px !important;}
  body[data-page="home"] .home-header-categories .home-category-pill__icon{width:70px !important;height:70px !important;min-width:70px !important;min-height:70px !important;flex-basis:70px !important;}
  body[data-page="home"] .home-header-categories .category-nav-button--prev{left:-8px !important;}
  body[data-page="home"] .home-header-categories .category-nav-button--next{right:-8px !important;}
}
@media(max-width:720px){
  body[data-page="home"]{--home-categories-height:116px !important;}
  body[data-page="home"] .home-header-categories{padding:8px 12px 6px !important;}
  body[data-page="home"] .home-header-categories .home-category-marquee__track{height:98px !important;gap:12px !important;padding:2px 2px 0 !important;}
  body[data-page="home"] .home-header-categories .home-category-pill{flex-basis:66px !important;width:66px !important;min-width:66px !important;height:94px !important;}
  body[data-page="home"] .home-header-categories .home-category-pill__icon{width:62px !important;height:62px !important;min-width:62px !important;min-height:62px !important;flex-basis:62px !important;}
  body[data-page="home"] .home-header-categories .home-category-pill__text strong{font-size:9px !important;}
  body[data-page="home"] .home-header-categories .category-nav-button{display:none !important;}
}

/* =========================================================
   Fase 34.35 — passadores de stories sempre perceptíveis e discretos
   ========================================================= */
body[data-page="home"] .home-header-categories .home-category-marquee{
  position:relative !important;
}
body[data-page="home"] .home-header-categories .category-nav-button{
  width:30px !important;
  height:30px !important;
  min-width:30px !important;
  top:44% !important;
  border:1px solid rgba(0,0,0,.08) !important;
  background:rgba(255,255,255,.92) !important;
  color:#1f1f1f !important;
  box-shadow:0 2px 8px rgba(0,0,0,.16) !important;
  opacity:.82 !important;
  backdrop-filter:blur(4px) !important;
  -webkit-backdrop-filter:blur(4px) !important;
}
body[data-page="home"] .home-header-categories .category-nav-button--prev{
  left:8px !important;
}
body[data-page="home"] .home-header-categories .category-nav-button--next{
  right:8px !important;
}
body[data-page="home"] .home-header-categories .category-nav-button:hover:not(:disabled){
  opacity:1 !important;
  background:#fff !important;
  transform:translateY(-50%) scale(1.04) !important;
}
body[data-page="home"] .home-header-categories .category-nav-button:disabled{
  opacity:.34 !important;
  display:flex !important;
}
body[data-page="home"] .home-header-categories .category-nav-button i{
  font-size:16px !important;
  line-height:1 !important;
}
@media(max-width:720px){
  body[data-page="home"] .home-header-categories .category-nav-button{
    display:flex !important;
    width:28px !important;
    height:28px !important;
    min-width:28px !important;
    opacity:.72 !important;
  }
  body[data-page="home"] .home-header-categories .category-nav-button--prev{left:4px !important;}
  body[data-page="home"] .home-header-categories .category-nav-button--next{right:4px !important;}
}


/* =========================================================
   Fase 34.36 — passadores de stories sempre visíveis
   ========================================================= */
body[data-page="home"] .home-header-categories .home-category-marquee__track{
  padding-left:42px !important;
  padding-right:42px !important;
}
body[data-page="home"] .home-header-categories .category-nav-button,
body[data-page="home"] .home-header-categories .category-nav-button[hidden]{
  display:flex !important;
  visibility:visible !important;
}
body[data-page="home"] .home-header-categories .category-nav-button--prev{left:10px !important;}
body[data-page="home"] .home-header-categories .category-nav-button--next{right:10px !important;}
body[data-page="home"] .home-header-categories .category-nav-button:disabled{
  opacity:.28 !important;
  pointer-events:none !important;
}
@media(max-width:720px){
  body[data-page="home"] .home-header-categories .home-category-marquee__track{
    padding-left:34px !important;
    padding-right:34px !important;
  }
  body[data-page="home"] .home-header-categories .category-nav-button--prev{left:3px !important;}
  body[data-page="home"] .home-header-categories .category-nav-button--next{right:3px !important;}
}
