:root {
    --orange: #ef6c28;
    --orange-hover: #d95e1f;
    --orange-light: #fff4ee;
    --grey: #6b6b6b;
    --grey-light: #9a9a9a;
    --dark: #333333;
    --text: #4a4a4a;
    --muted: #777777;
    --bg: #ffffff;
    --bg-soft: #f7f7f7;
    --white: #ffffff;
    --border: #e8e8e8;
    --radius: 8px;
    --radius-pill: 50px;
    --header-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    --container: 1400px;
    --gutter: 16px;
    --gutter-lg: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.site-main {
    padding-bottom: 100px;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ========== HEADER (layout igual site Nuvemshop — largo, busca grande) ========== */
.site-header {
    background: var(--white);
    box-shadow: var(--header-shadow);
}

.head-sticky {
    position: sticky;
    top: 0;
    z-index: 200;
}

.head-top-accent {
    height: 4px;
    background: linear-gradient(90deg, #4a3728 0%, #5c4636 50%, #4a3728 100%);
}

.header-shell {
    width: 100%;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding: 14px var(--gutter) 0;
}

.head-row {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 8px 10px;
    width: 100%;
}

.head-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--dark);
    grid-column: 1;
    justify-self: start;
}

.head-menu-icon {
    display: block;
    width: 22px;
    height: 16px;
    background:
        linear-gradient(var(--dark), var(--dark)) 0 0 / 100% 2px no-repeat,
        linear-gradient(var(--dark), var(--dark)) 0 50% / 100% 2px no-repeat,
        linear-gradient(var(--dark), var(--dark)) 0 100% / 100% 2px no-repeat;
}

.head-menu-btn:hover .head-menu-icon,
.head-menu-btn:focus-visible .head-menu-icon {
    background:
        linear-gradient(var(--orange), var(--orange)) 0 0 / 100% 2px no-repeat,
        linear-gradient(var(--orange), var(--orange)) 0 50% / 100% 2px no-repeat,
        linear-gradient(var(--orange), var(--orange)) 0 100% / 100% 2px no-repeat;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    justify-self: center;
    min-width: 0;
}

.logo-img {
    width: min(150px, 38vw);
    height: auto;
    object-fit: contain;
}

.head-search-desktop {
    display: none;
    grid-column: 2;
}

.head-search-mobile {
    display: flex;
    width: 100%;
    margin-top: 10px;
}

.head-tools {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    grid-column: 3;
    justify-self: end;
}

.head-account {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    min-width: 0;
}

.head-account:hover .head-account-text strong {
    color: var(--orange);
}

.head-account-icon {
    flex-shrink: 0;
    color: var(--dark);
    display: flex;
}

.head-account-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
}

.head-account-text strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
}

.head-account-text span {
    font-size: 0.72rem;
    color: var(--muted);
}

@media (max-width: 991px) {
    .head-account-text {
        display: none;
    }

    .head-account {
        width: 40px;
        justify-content: center;
    }
}

.head-tool {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--dark);
    flex-shrink: 0;
}

button.head-tool {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.head-tool:hover {
    color: var(--orange);
}

.head-tool-wa {
    color: #25d366;
}

.head-tool-wa:hover {
    color: #1da851;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.head-search {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
}

.head-search input {
    flex: 1;
    min-width: 0;
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
    outline: none;
    background: transparent;
    min-height: 46px;
}

.head-search input::placeholder {
    color: #b0b0b0;
}

.head-search button {
    border: none;
    background: transparent;
    padding: 0 14px;
    cursor: pointer;
    color: var(--grey);
    display: flex;
    align-items: center;
}

.head-search button:hover {
    color: var(--orange);
}

.head-nav {
    margin-top: 12px;
    padding-bottom: 2px;
    border-top: 1px solid var(--border);
}

.head-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.head-nav-list::-webkit-scrollbar {
    display: none;
}

.head-nav-list > li {
    flex: 0 0 auto;
}

.head-nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #555;
    white-space: nowrap;
}

.head-nav-link:hover,
.head-nav-item--has-mega:hover > .head-nav-link {
    color: var(--orange);
}

.head-nav-link--novo {
    position: relative;
    padding-top: 18px;
}

.head-nav-badge-novo {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 3px;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(245, 124, 0, 0.35);
}

.head-nav-badge-novo--drawer {
    position: static;
    transform: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

/* Mega-menu desktop (hover em Frontais, Baterias, etc.) */
.head-nav-item--has-mega {
    position: static;
}

.head-mega {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 210;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    padding: 12px 0 14px;
}

.head-nav-item--has-mega:hover .head-mega,
.head-nav-item--has-mega:focus-within .head-mega {
    display: block;
}

.head-mega-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.head-mega-all {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
    padding-bottom: 0;
    line-height: 1.2;
}

.head-mega-all:hover {
    text-decoration: underline;
}

.head-mega-all--secondary {
    margin-left: 14px;
    color: var(--dark);
    font-weight: 600;
}

.head-mega-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2px 18px;
    align-items: start;
}

.head-mega-link {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    padding: 3px 0;
    letter-spacing: 0.01em;
}

.head-mega-link:hover {
    color: var(--orange);
    text-decoration: none;
}

.header-shell {
    position: relative;
}

.head-nav {
    position: static;
}

@media (min-width: 992px) {
    .head-nav-list {
        justify-content: center;
        overflow-x: visible;
    }

    .head-mega-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .head-mega {
        display: none !important;
    }
}

/* Menu mobile — subcategorias expansíveis */
.head-drawer-group {
    border-bottom: 1px solid #eee;
}

.head-drawer-expand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
}

.head-drawer-sub {
    list-style: none;
    margin: 0;
    padding: 0 20px 12px;
    display: none;
}

.head-drawer-group.is-open .head-drawer-sub {
    display: block;
}

.head-drawer-group.is-open .head-drawer-chevron {
    transform: rotate(180deg);
}

.head-drawer-sub li {
    border-bottom: none;
}

.head-drawer-sub a {
    display: block;
    padding: 10px 0 10px 8px;
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #555;
}

.head-drawer-sub a:hover {
    color: var(--orange);
}

/* Página de categoria */
.cat-breadcrumb {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.cat-breadcrumb a {
    color: var(--muted);
}

.cat-breadcrumb a:hover {
    color: var(--orange);
}

.cat-breadcrumb span {
    margin: 0 6px;
}

.cat-page {
    padding: 32px 0 48px;
}

.cat-intro {
    color: var(--muted);
    margin-bottom: 24px;
}

.cat-badge-novo {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    background: var(--orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
}

.cat-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.cat-brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    text-align: center;
}

.cat-brand-card:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.cat-brand-grid--marcas {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.cat-brand-card--destaque {
    min-height: 64px;
    font-size: 1rem;
    border-color: var(--orange);
    background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
    color: var(--orange);
}

@media (min-width: 600px) {
    .cat-brand-grid--marcas {
        grid-template-columns: repeat(4, 1fr);
    }
    .cat-brand-grid--marcas .cat-brand-card:not(.cat-brand-card--destaque) {
        grid-column: span 1;
    }
}

.cat-toolbar {
    margin-bottom: 20px;
}

.cat-back-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--orange);
}

.cat-products-empty {
    padding: 32px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    text-align: center;
}

.cat-products-empty p {
    margin-bottom: 16px;
    color: var(--muted);
}

.cat-filters-backdrop {
    display: none;
}

.cat-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}

.cat-filters {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    position: sticky;
    top: 16px;
    align-self: start;
}

.cat-filters-head {
    display: none;
}

.cat-filters-form {
    padding: 8px 0;
}

.cat-filter-group {
    border-bottom: 1px solid var(--border);
    margin: 0;
}

.cat-filter-group:last-of-type {
    border-bottom: none;
}

.cat-filter-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    list-style: none;
    user-select: none;
    color: var(--dark);
    background: var(--white);
}

.cat-filter-group summary::-webkit-details-marker {
    display: none;
}

.cat-filter-group summary::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #888;
    border-bottom: 2px solid #888;
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-top: -4px;
}

.cat-filter-group[open] summary::after {
    transform: rotate(45deg);
    margin-top: 4px;
}

.cat-filter-group[open] summary {
    border-bottom: 1px solid var(--border);
}

.cat-filter-group > .cat-filter-price,
.cat-filter-group > .cat-filter-list,
.cat-filter-group > .cat-filter-more {
    padding-left: 16px;
    padding-right: 16px;
}

.cat-filter-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0 14px;
    font-size: 0.85rem;
}

.cat-filter-price input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-top: 4px;
}

.cat-filter-soon {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 8px;
}

.cat-filter-clear {
    display: block;
    margin: 12px 16px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange);
}

.cat-filter-open-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
}

.cat-filter-open-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.cat-filter-more {
    display: block;
    width: calc(100% - 32px);
    margin: 4px 16px 14px;
    padding: 8px 0;
    border: none;
    background: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange);
    cursor: pointer;
    text-align: left;
}

.cat-filter-list--expandable > li.is-collapsed {
    display: none;
}

.cat-filter-list--expandable.is-expanded > li.is-collapsed {
    display: list-item;
}

.cat-main {
    min-width: 0;
}

.cat-toolbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cat-count {
    font-size: 0.9rem;
    color: var(--muted);
}

.cat-sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
}

.cat-sort-form select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
}

.cat-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.product-card--grid {
    width: 100%;
    min-width: 0;
    flex: none;
    scroll-snap-align: unset;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.82rem;
}

.pdp-section {
    padding: 32px 0 48px;
}

.pdp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.pdp-gallery-wrap {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pdp-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.pdp-thumb {
    border: 2px solid var(--border);
    border-radius: 6px;
    padding: 2px;
    background: #fff;
    cursor: pointer;
    width: 72px;
    height: 72px;
    overflow: hidden;
}

.pdp-thumb.is-active {
    border-color: var(--orange);
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-gallery {
    flex: 1;
    min-width: 0;
}

.pdp-gallery img {
    width: 100%;
    max-width: 520px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #f8f8f8;
}

.pdp-specs {
    margin: 0 0 16px;
    padding: 12px 14px;
    background: #f8f9fc;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.88rem;
}

.pdp-spec-row {
    display: grid;
    grid-template-columns: minmax(100px, 38%) 1fr;
    gap: 6px 12px;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.pdp-spec-row:last-child {
    border-bottom: none;
}

.pdp-spec-row dt {
    margin: 0;
    font-weight: 600;
    color: #555;
}

.pdp-spec-row dd {
    margin: 0;
    color: var(--dark);
}

.pdp-title-main {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
    color: #222;
}

.pdp-sku-badge {
    display: inline-block;
    font-size: 0.78rem;
    color: #666;
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 4px 10px;
    margin-bottom: 14px;
}

.pdp-sku-badge strong {
    color: #111;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.pdp-price-box {
    background: #f7f7f7;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.pdp-price-pix-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}

.pdp-price-pix {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.1;
}

.pdp-badge-pix {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    border-radius: 4px;
    padding: 4px 8px;
    text-transform: uppercase;
}

.pdp-price-list {
    font-size: 0.88rem;
    color: #888;
    margin: 0 0 4px;
}

.pdp-price-list s {
    color: #999;
}

.pdp-price-parcela {
    font-size: 0.85rem;
    color: #444;
    margin: 0 0 6px;
}

.pdp-frete-msg {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 600;
    margin: 0;
}

.pdp-sku {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.pdp-shipping {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
}

.pdp-shipping-title {
    font-weight: 700;
    margin: 0 0 4px;
}

.pdp-shipping-hint {
    color: var(--muted);
    margin: 0;
}

.pdp-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.pdp-payments img {
    height: 22px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

.pdp-payments-note {
    font-size: 0.72rem;
    color: var(--muted);
    width: 100%;
}

.pdp-desc-block {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.pdp-desc-title {
    font-size: 1rem;
    margin: 0 0 10px;
}

.pdp-btn-comprar {
    flex: 1;
    max-width: none;
}

.cart-page-sku {
    font-size: 0.78rem;
    color: #666;
    margin: 0 0 2px;
    font-weight: 700;
}

.pdp-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--dark);
}

.pdp-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.btn-buy--large {
    display: inline-flex;
    max-width: 320px;
}

.product-colors {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.product-color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.15);
    flex-shrink: 0;
}

.product-color-more {
    font-size: 0.72rem;
    color: var(--muted);
}

.cat-filter-list {
    list-style: none;
    margin: 10px 0 14px;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cat-filter-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--dark);
}

.cat-filter-link.is-on {
    color: var(--orange);
    font-weight: 700;
}

.pdp-option-group {
    margin-bottom: 18px;
}

.pdp-option-label {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.pdp-options--btn {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pdp-opt-btn {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.pdp-opt-btn.is-selected {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange);
}

.pdp-opt-btn.is-disabled {
    opacity: 0.45;
    text-decoration: line-through;
    cursor: not-allowed;
}

.pdp-options--cor {
    display: flex;
    gap: 10px;
}

.pdp-swatch {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
}

.pdp-swatch.is-selected {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange);
}

.pdp-swatch.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.pdp-qty-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
}

.pdp-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.pdp-qty button {
    width: 36px;
    height: 40px;
    border: none;
    background: var(--bg-soft);
    cursor: pointer;
    font-size: 1.1rem;
}

.pdp-qty input {
    width: 48px;
    text-align: center;
    border: none;
    font-weight: 700;
}

.pdp-stock.is-out { color: #c00; font-weight: 600; }
.pdp-stock.is-ok { color: var(--muted); font-size: 0.88rem; }

.pdp-title {
    font-size: 1.1rem;
}

body.cat-filters-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .cat-layout {
        grid-template-columns: 1fr;
    }

    .cat-filters-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 380;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .cat-filters-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .cat-filters {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 92vw);
        z-index: 390;
        border-radius: 0;
        border: none;
        border-left: 1px solid var(--border);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        transition: transform 0.28s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: 100vh;
    }

    .cat-filters.is-open {
        transform: translateX(0);
    }

    .cat-filters-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        background: var(--white);
        z-index: 2;
    }

    .cat-filters-title {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 700;
    }

    .cat-filters-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: none;
        background: var(--bg-soft);
        border-radius: 8px;
        cursor: pointer;
        color: var(--dark);
    }

    .cat-filter-open-btn {
        display: inline-flex;
    }

    .cat-toolbar-row {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px 12px;
    }

    .cat-count {
        grid-column: 1 / -1;
        order: 3;
        margin: 0;
    }

    .cat-sort-form {
        justify-self: end;
    }

    .pdp-layout {
        grid-template-columns: 1fr;
    }
}

/* Menu lateral mobile (igual Nuvemshop) */
.head-drawer {
    position: fixed;
    inset: 0;
    z-index: 400;
    pointer-events: none;
    visibility: hidden;
}

.head-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.head-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.head-drawer.is-open .head-drawer-backdrop {
    opacity: 1;
}

.head-drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--white);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.head-drawer.is-open .head-drawer-panel {
    transform: translateX(0);
}

.head-drawer-top {
    display: flex;
    justify-content: flex-end;
    padding: 12px 14px 4px;
    flex-shrink: 0;
}

.head-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--dark);
    cursor: pointer;
}

.head-drawer-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.head-drawer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.head-drawer-nav li {
    border-bottom: 1px solid #eee;
}

.head-drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--dark);
}

.head-drawer-nav a:hover,
.head-drawer-nav a:focus {
    color: var(--orange);
}

.head-drawer-chevron {
    flex-shrink: 0;
    color: #bbb;
}

.head-drawer-footer {
    flex-shrink: 0;
    padding: 16px 20px 24px;
    border-top: 1px solid #eee;
}

.head-drawer-account {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.head-drawer-account:hover {
    color: var(--orange);
}

body.head-drawer-open {
    overflow: hidden;
}

@media (min-width: 768px) {
    :root {
        --gutter: 24px;
    }

    .head-account-text {
        display: flex;
    }

    .head-account {
        width: auto;
        padding-right: 4px;
    }
}

@media (min-width: 992px) {
    :root {
        --gutter: 32px;
    }

    .header-shell {
        padding: 18px var(--gutter-lg) 0;
    }

    .head-menu-btn {
        display: none;
    }

    .head-drawer {
        display: none;
    }

    .head-row {
        display: grid;
        grid-template-columns: 240px minmax(0, 1fr) auto;
        gap: 28px 56px;
        align-items: center;
        justify-content: stretch;
    }

    .logo-link {
        grid-column: 1;
        justify-self: start;
    }

    .head-search-desktop {
        grid-column: 2;
    }

    .head-tools {
        grid-column: 3;
    }

    .logo-img {
        width: 240px;
        max-width: none;
    }

    .head-search-desktop {
        display: flex;
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .head-search-desktop input {
        min-height: 50px;
        padding: 14px 20px;
        font-size: 1.05rem;
    }

    .head-search-mobile {
        display: none;
    }

    .head-tools {
        margin-left: 0;
        justify-self: end;
        gap: 14px;
        padding-left: 8px;
    }

    .head-account {
        display: flex;
        gap: 12px;
    }

    .head-account-icon svg {
        width: 28px;
        height: 28px;
    }

    .head-account-text strong {
        font-size: 0.9rem;
    }

    .head-account-text span {
        font-size: 0.8rem;
    }

    .head-tool {
        width: 44px;
        height: 44px;
    }

    .head-nav-list {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .head-nav-list a {
        padding: 14px 28px;
        font-size: 0.84rem;
    }
}

@media (min-width: 1200px) {
    :root {
        --gutter: 40px;
        --gutter-lg: 56px;
    }

    .head-row {
        gap: 32px 72px;
    }
}

/* ========== CARROSSEL HOME (mesma proporção em todos os slides: 1857×847) ========== */
.hero-home {
    padding: 12px 0 0;
    background: var(--white);
}

.hero-home .container {
    max-width: var(--container);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.home-carousel {
    width: 100%;
    --carousel-ratio: 1857 / 847;
}

.home-carousel-viewport {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.home-carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: var(--carousel-ratio);
}

.home-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.home-carousel-slide.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.home-carousel-slide a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.home-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.home-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, color 0.2s;
}

.home-carousel-arrow:hover {
    background: var(--white);
    color: var(--orange);
}

.home-carousel-prev { left: 10px; }
.home-carousel-next { right: 10px; }

.home-carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.home-carousel-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.home-carousel-dot.is-active {
    background: var(--dark);
    transform: scale(1.15);
}

.home-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 992px) {
    .hero-home {
        padding-top: 16px;
    }

    .hero-home .container {
        padding-left: var(--gutter-lg);
        padding-right: var(--gutter-lg);
    }
}

@media (max-width: 991px) {
    .header-shell {
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    .hero-home .container {
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    .home-carousel-viewport {
        border-radius: 8px;
    }

    .home-carousel-arrow {
        width: 32px;
        height: 32px;
    }

    .home-carousel-prev { left: 6px; }
    .home-carousel-next { right: 6px; }

    .home-carousel-dots {
        bottom: 10px;
        gap: 6px;
    }

    .home-carousel-dot {
        width: 8px;
        height: 8px;
    }
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
}

.btn-hero,
.btn-primary,
.btn-buy,
.btn-sm {
    background: var(--orange);
    color: #fff;
}

.btn-hero:hover,
.btn-primary:hover,
.btn-buy:hover,
.btn-sm:hover {
    background: var(--orange-hover);
    color: #fff;
}

.btn-buy {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-buy-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
}

/* ========== BENEFÍCIOS (linha horizontal — igual Nuvemshop) ========== */
.benefits-bar {
    background: #f5f5f5;
    padding: 28px 0;
    border-top: none;
    border-bottom: 1px solid #ededed;
}

.benefits-shell {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.benefits-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 4px 2px 8px;
}

.benefits-row::-webkit-scrollbar {
    display: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    min-width: min(260px, 82vw);
    scroll-snap-align: start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: #e8eef3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.benefit-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.benefit-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 2px;
}

.benefit-text span {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.3;
}

@media (min-width: 992px) {
    .benefits-shell {
        padding-left: var(--gutter-lg);
        padding-right: var(--gutter-lg);
    }

    .benefits-row {
        justify-content: space-between;
        gap: 28px;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }

    .benefit-item {
        flex: 1 1 0;
        min-width: 0;
        max-width: 280px;
    }
}

/* ========== SEÇÕES HOME ========== */
.section-home {
    padding: 32px 0;
}

.section-products {
    background: var(--bg-soft);
    padding-bottom: 32px;
}

.section-products-head {
    padding-bottom: 0;
}

.section-products-head .section-title {
    margin-bottom: 14px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
}

/* Destaques — carrossel horizontal (igual site original) */
.products-slider {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 44px;
}

.products-slider-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.products-slider-viewport::-webkit-scrollbar {
    display: none;
}

.products-slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    width: max-content;
    padding: 2px 4px 6px;
}

.products-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

.products-slider-arrow:hover {
    color: var(--orange);
    background: var(--white);
}

.products-slider-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.products-slider-prev { left: 4px; }
.products-slider-next { right: 4px; }

.product-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: min(280px, 78vw);
    min-width: 200px;
    scroll-snap-align: start;
}

.product-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.product-image {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: #f0f0f0;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--orange);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 9px 5px 7px;
    border-radius: 4px;
    line-height: 1;
    pointer-events: none;
}

.product-badge-icon {
    width: 18px;
    height: 14px;
    flex-shrink: 0;
    display: block;
}

.product-badge-text {
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.product-body h3 {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.35;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-body h3 a:hover { color: var(--orange); }

.product-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    margin-top: auto;
}

/* Depoimentos — logo + nome + texto; mobile = rolagem lateral (igual produtos) */
.section-testimonials {
    background: var(--white);
}

.testimonials {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    padding: 4px var(--gutter) 10px;
}

.testimonials::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 min(300px, 85vw);
    scroll-snap-align: start;
    text-align: center;
    padding: 0 4px;
}

@media (min-width: 768px) {
    .testimonials {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        overflow-x: visible;
        scroll-snap-type: none;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    .testimonial-card {
        flex: unset;
        min-width: 0;
    }

    .section-title { font-size: 1.35rem; }
}

.testimonial-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-soft);
}

.testimonial-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.3;
}

.testimonial-text {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* Páginas internas */
.section { padding: 40px 0; }

.page-stub {
    padding: 48px 0;
    text-align: center;
}

.page-stub h1 { margin-bottom: 12px; }

/* Faixa de título (institucional — igual Nuvemshop) */
.page-title-bar {
    background: #f4f4f4;
    margin-bottom: 0;
}

.page-title-bar .container {
    padding-top: 14px;
    padding-bottom: 14px;
}

.page-title-bar-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.page-content-institutional {
    padding: 28px 0 56px;
    background: #f7f7f7;
}

.page-institutional-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

@media (min-width: 992px) {
    .page-institutional-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 36px;
    }
}

.page-institutional-main {
    width: 100%;
    min-width: 0;
}

.inst-sidebar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 18px 16px 20px;
}

@media (min-width: 992px) {
    .inst-sidebar {
        position: sticky;
        top: 96px;
    }
}

.inst-sidebar-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--orange);
}

.inst-sidebar-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.inst-sidebar-links a {
    display: block;
    padding: 9px 4px;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.inst-sidebar-links li:last-child a {
    border-bottom: none;
}

.inst-sidebar-links a:hover,
.inst-sidebar-links a:focus {
    color: var(--orange);
}

.inst-sidebar-links a.is-active {
    color: var(--orange);
    font-weight: 700;
}

.about-hero--compact {
    padding: 28px 22px;
}

.about-mvv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .about-mvv-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.about-mvv-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.about-mvv-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #f5f5f8;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-mvv-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--dark);
}

.about-mvv-text {
    margin: 0;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
}

.about-years {
    text-align: center;
    padding: 36px 20px 32px;
    margin-bottom: 24px;
}

.about-years-number {
    font-size: clamp(3.5rem, 12vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    margin: 0 0 6px;
    color: var(--dark);
}

.about-years-label {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 14px;
}

.about-years-text {
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.65;
}

.about-timeline {
    background: #1f1f23;
    color: #fff;
    border-radius: 14px;
    padding: 28px 22px 24px;
    margin-bottom: 28px;
}

.about-timeline-kicker {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 6px;
}

.about-timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 22px;
    line-height: 1.25;
}

.about-timeline-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.about-timeline-item {
    flex: 0 0 min(220px, 78vw);
    scroll-snap-align: start;
    padding-top: 8px;
}

.about-timeline-dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 12px;
}

.about-timeline-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.about-timeline-item-year {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px;
}

.about-timeline-item-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.about-brands-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media (min-width: 600px) {
    .about-brands-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.about-brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.about-brand-card:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.about-video-section {
    margin-bottom: 28px;
}

.about-video-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}

.about-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-video-fallback {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
}

.about-video-fallback p {
    margin: 0 0 16px;
    color: #555;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-hero {
    background: #f0eeff;
    border-radius: 14px;
    padding: 40px 28px;
    text-align: center;
    margin-bottom: 20px;
}

.about-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 14px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 560px;
}

.about-highlight {
    margin: 0 0 28px;
    padding: 26px 28px;
    background: #1f1f23;
    border: none;
    border-radius: 14px;
    text-align: center;
}

.about-highlight-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.about-highlight-text {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
}

.about-highlight-text strong {
    color: #fff;
    font-weight: 700;
}

.about-section {
    margin-bottom: 28px;
}

.about-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 20px;
}

.how-grid-wrap {
    width: 100%;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.how-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 100%;
}

.how-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.how-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.35;
}

.how-text {
    margin: 0;
    font-size: 0.84rem;
    color: #666;
    line-height: 1.6;
}

.how-text strong {
    color: var(--dark);
    font-weight: 600;
}

/* Caixa “Pronto para comprar?” — card branco + botão laranja pill */
.about-note {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 28px 26px 30px;
    margin-top: 4px;
}

.about-note-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.about-note-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 18px;
}

.btn-contact-pill,
.btn-whatsapp-cs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    background: var(--orange);
    color: #fff !important;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease;
    border: none;
}

.btn-contact-pill:hover,
.btn-whatsapp-cs:hover {
    background: var(--orange-hover);
    color: #fff !important;
}

/* Mobile: passos deslizam para o lado */
@media (max-width: 991px) {
    .how-grid-wrap {
        margin-left: calc(-1 * var(--gutter));
        margin-right: calc(-1 * var(--gutter));
        padding-left: var(--gutter);
        padding-right: var(--gutter);
        overflow: hidden;
    }

    .how-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding-bottom: 8px;
        grid-template-columns: none;
    }

    .how-grid::-webkit-scrollbar {
        display: none;
    }

    .how-card {
        flex: 0 0 min(280px, 82vw);
        scroll-snap-align: start;
        min-height: auto;
    }

    .about-hero {
        padding: 32px 20px;
    }

    .about-title {
        font-size: 1.55rem;
    }

    .about-note {
        padding: 22px 18px 24px;
    }

    .btn-contact-pill,
    .btn-whatsapp-cs {
        width: 100%;
        text-align: center;
    }
}

/* Desktop: grade fixa 3 colunas (nunca carrossel) */
@media (min-width: 992px) {
    .how-grid-wrap {
        overflow: visible;
        margin: 0;
        padding: 0;
    }

    .how-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        overflow: visible !important;
        flex-wrap: unset !important;
    }

    .how-card {
        flex: unset !important;
        width: auto !important;
        max-width: none !important;
    }
}

@media (min-width: 768px) {
    .page-title-bar .container {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .page-title-bar-heading {
        font-size: 1.5rem;
    }

    .about-hero {
        padding: 48px 40px;
    }

    .about-title {
        font-size: 2.15rem;
    }

    .about-highlight {
        padding: 30px 36px;
    }
}

/* ========== FOOTER (igual site Nuvemshop) ========== */
.site-footer {
    margin-top: 0;
    background: var(--white);
}

/* Newsletter laranja */
.footer-newsletter {
    background: var(--orange);
    color: #fff;
    padding: 40px var(--gutter-lg);
}

.footer-newsletter-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-newsletter-info {
    flex: 1 1 260px;
    max-width: 460px;
}

.footer-newsletter-title {
    font-size: 1.65rem;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.2;
}

.footer-newsletter-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.footer-newsletter-form {
    flex: 1 1 320px;
    display: flex;
    max-width: 560px;
    margin: 0;
}

.footer-newsletter-input {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 18px;
    border: none;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.9rem;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.footer-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-btn {
    height: 48px;
    padding: 0 26px;
    border: none;
    background: #fff;
    color: var(--orange);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    white-space: nowrap;
}

.footer-newsletter-btn:hover {
    background: #fff3ee;
}

/* Colunas */
.footer-main {
    background: var(--white);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 40px var(--gutter) 32px;
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin: 0;
    padding-bottom: 6px;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}

/* Rodapé acordeão no mobile (igual Nuvemshop) */
.footer-accordion-btn {
    display: none;
}

.footer-accordion-panel {
    display: block;
}

@media (max-width: 991px) {
    .footer-columns {
        gap: 0;
        padding-top: 8px;
        padding-bottom: 16px;
    }

    .footer-accordion {
        border-bottom: 1px solid #e8e8e8;
    }

    .footer-accordion-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        padding: 16px 0;
        margin: 0;
        border: none;
        background: transparent;
        outline: none;
        box-shadow: none;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        text-align: left;
        color: inherit;
    }

    .footer-accordion-btn:focus,
    .footer-accordion-btn:focus-visible {
        outline: none;
        box-shadow: none;
    }

    .footer-accordion-icon {
        flex-shrink: 0;
        color: var(--dark);
        transition: transform 0.25s ease;
    }

    .footer-accordion:not(.is-open) .footer-accordion-panel {
        display: none;
    }

    .footer-accordion.is-open .footer-accordion-icon {
        transform: rotate(180deg);
    }

    .footer-accordion.is-open .footer-accordion-panel {
        display: block;
        padding-bottom: 18px;
    }

    .footer-accordion .footer-col-title {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    /* Sem caixa cinha do <button> — só o título com sublinhado laranja */
    .footer-accordion-btn {
        display: contents;
        pointer-events: none;
        padding: 0;
        margin: 0;
        border: none;
        background: transparent;
        outline: none;
        box-shadow: none;
        appearance: none;
        -webkit-appearance: none;
    }

    .footer-accordion-btn:focus,
    .footer-accordion-btn:focus-visible {
        outline: none;
        box-shadow: none;
    }

    .footer-accordion .footer-col-title {
        display: inline-block;
        margin-bottom: 18px;
    }

    .footer-accordion-icon {
        display: none;
    }

    .footer-accordion-panel {
        display: block !important;
        padding-bottom: 0 !important;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.86rem;
    color: #555;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--orange);
    transition: width 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--orange);
    text-decoration: none;
}

.footer-links a:hover::after,
.footer-links a:focus::after {
    width: 100%;
}

/* Contato com ícones */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.82rem;
    color: #333;
    line-height: 1.4;
    text-decoration: none;
}

.footer-contact-item:hover {
    color: #333;
    opacity: 0.85;
}

.footer-contact-item:hover span:last-child {
    text-decoration: underline;
}

.footer-contact-item--static {
    cursor: default;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon--wa {
    background: #e6faf0;
}

.footer-contact-icon--phone,
.footer-contact-icon--email,
.footer-contact-icon--addr {
    background: var(--orange-light);
    color: var(--orange);
}

/* Pagamento e envio */
.footer-payments {
    border-top: 1px solid var(--border);
}

.footer-payments-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 40px;
    padding: 24px var(--gutter) 28px;
}

.footer-payments-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;
}

.footer-payments-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-right: 4px;
}

.footer-payments-logos {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.footer-payments-logos img {
    display: block;
    height: 25px;
    width: auto;
    max-width: 52px;
    min-width: 32px;
    object-fit: contain;
}

/* Copyright */
.footer-legal {
    background: #f0f0f0;
    border-top: 1px solid #e0e0e0;
}

.footer-legal-inner {
    padding: 16px var(--gutter);
    text-align: center;
}

.footer-legal-inner p {
    margin: 0;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
}

/* Cookie bar (texto e botão iguais referência) */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 300;
    font-size: 0.82rem;
    color: var(--text);
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
}

.cookie-bar.hidden { display: none; }

.cookie-bar button {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    border-radius: 2px;
    flex-shrink: 0;
}

.cookie-bar button:hover {
    background: #333;
}

.whatsapp-float {
    position: fixed;
    right: 14px;
    bottom: 80px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    z-index: 250;
}

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

body.cookies-accepted .site-main {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

/* ========== MOBILE ========== */
@media (max-width: 991px) {
    .head-search-desktop {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
        position: absolute !important;
        pointer-events: none !important;
    }

    .head-nav-desktop {
        display: none;
    }

    .head-search-mobile {
        margin-top: 12px;
    }

    .head-search input,
    .newsletter-form input {
        font-size: 16px;
        min-height: 44px;
    }

    .head-nav-link {
        padding: 12px 14px;
    }


    .section-home { padding: 24px 0; }

    .footer-newsletter {
        padding: 28px var(--gutter);
    }

    .footer-newsletter-inner {
        gap: 24px;
    }

    .footer-newsletter-form {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    .footer-payments-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px var(--gutter);
    }

    .cookie-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }

    .cookie-bar button { width: 100%; }

    .whatsapp-float {
        bottom: calc(76px + env(safe-area-inset-bottom, 0px));
        right: 12px;
        width: 48px;
        height: 48px;
    }

    .site-main {
        padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 380px) {
    .logo-img { width: min(170px, 48vw); }
    .head-action { min-width: 38px; min-height: 38px; }
    .products-slider {
        padding: 0 36px;
        max-width: none;
        margin: 0;
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    .products-slider-prev { left: 2px; }
    .products-slider-next { right: 2px; }

    .product-card {
        width: min(260px, 72vw);
        min-width: 180px;
    }
    .product-body { padding: 10px; }
    .product-body h3 { font-size: 0.72rem; }
}

/* Quick shop modal + carrinho */
body.qs-open,
body.cart-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

.qs-overlay[hidden],
.qs-modal[hidden],
.cart-drawer-overlay[hidden],
.cart-drawer[hidden],
.cart-toast[hidden] {
    display: none !important;
}

.qs-overlay,
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1200;
}

.qs-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1210;
    width: min(980px, calc(100vw - 24px));
    max-height: calc(100vh - 32px);
    overflow: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    padding: 24px 20px 20px;
}

.qs-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 1.75rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    z-index: 2;
}

.qs-inner {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
    gap: 28px;
    align-items: start;
}

.qs-gallery-wrap {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.qs-thumbs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qs-gallery {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 8px;
    min-height: 300px;
    padding: 16px;
}

.qs-gallery img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.qs-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
    line-height: 1.35;
    padding-right: 28px;
}

.qs-sku {
    margin-bottom: 10px;
}

.qs-specs {
    margin: 0 0 12px;
    font-size: 0.82rem;
}

.qs-desc {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.5;
    margin: 0 0 14px;
    max-height: 120px;
    overflow-y: auto;
    white-space: pre-wrap;
}

.qs-stock {
    font-size: 0.8rem;
    color: #888;
    margin: 0 0 14px;
}

.qs-stock.is-ok {
    color: #2a7a2a;
}

.qs-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.qs-footer .btn-buy--large {
    flex: 1;
    min-width: 140px;
}

.cart-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1220;
    background: #222;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.cart-drawer:not([hidden]) {
    display: flex;
    flex-direction: column;
}

.cart-drawer {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(420px, 92vw);
    max-height: 100dvh;
    z-index: 1210;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.14);
}

.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 16px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
    background: #fff;
}

.cart-drawer-head-text h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cart-drawer-count {
    margin: 4px 0 0;
    font-size: 0.78rem;
    color: #888;
}

.cart-drawer-close-btn {
    border: 0;
    background: #f5f5f5;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
    flex-shrink: 0;
}

.cart-drawer-close-btn:hover {
    background: #eee;
    color: #222;
}

.cart-drawer-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 14px 18px 16px;
}

.cart-drawer-frete--compact {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    border: 1px solid #ffd9b3;
}

.cart-drawer-frete--compact.is-frete-ok {
    background: linear-gradient(135deg, #edf7ed 0%, #fff 100%);
    border-color: #b8e0b8;
}

.cart-drawer-next-hint {
    margin: 0 0 12px;
    padding: 10px 12px;
    font-size: 0.78rem;
    line-height: 1.4;
    color: #666;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.cart-drawer-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
}

.cart-drawer-item-img img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}

.cart-drawer-foot {
    padding: 16px 18px calc(20px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #eee;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.cart-drawer-empty {
    margin: 24px 0;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.cart-drawer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-drawer-item-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #222;
    line-height: 1.35;
    margin-bottom: 4px;
    text-decoration: none;
}

.cart-drawer-item-name:hover {
    color: var(--orange);
}

.cart-drawer-item-attrs {
    margin: 0 0 8px;
    font-size: 0.75rem;
    color: #888;
}

.cart-drawer-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cart-drawer-qty {
    margin: 0;
}

.cart-drawer-qty input {
    width: 36px;
    text-align: center;
    font-size: 0.85rem;
}

.cart-drawer-remove {
    border: 0;
    background: transparent;
    color: #999;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.cart-drawer-remove:hover {
    color: #c00;
}

.cart-drawer-item-price {
    font-size: 0.9rem;
    width: 100%;
    text-align: right;
    margin-top: 2px;
}

.cart-drawer-frete {
    margin-bottom: 14px;
}

.cart-drawer-frete.is-frete-ok {
    background: #edf7ed;
    border-radius: 6px;
    padding: 10px 12px;
    margin: 0 -4px 14px;
}

.cart-drawer-frete-text {
    margin: 0 0 8px;
    font-size: 0.78rem;
    color: #555;
    line-height: 1.35;
}

.cart-drawer-frete-bar {
    height: 6px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.cart-drawer-frete-bar span {
    display: block;
    height: 100%;
    background: var(--orange);
    border-radius: 4px;
    transition: width 0.25s ease;
}

.cart-drawer-brindes {
    margin-bottom: 12px;
}

.cart-drawer-brindes-inner {
    margin: 0;
}

.loja-brindes-banner {
    background: linear-gradient(135deg, #f3f0ff 0%, #fff 100%);
    border: 1px solid #c4b5fd;
    border-radius: 10px;
    padding: 12px 14px;
    margin: 0 0 14px;
}

.loja-brindes-banner.is-ok {
    background: linear-gradient(135deg, #ecfdf5 0%, #fff 100%);
    border-color: #6ee7b7;
}

.loja-brindes-text {
    margin: 0 0 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #4c1d95;
    line-height: 1.4;
}

.loja-brindes-banner.is-ok .loja-brindes-text {
    color: #065f46;
}

.loja-brindes-list {
    margin: 0 0 8px;
    padding: 0;
    list-style: none;
    font-size: 0.76rem;
    color: #444;
}

.loja-brindes-list li {
    margin: 4px 0;
}

.loja-brindes-check {
    color: #7c3aed;
    font-weight: 700;
    margin-right: 4px;
}

.loja-brindes-banner.is-ok .loja-brindes-check {
    color: #059669;
}

.loja-brindes-list small {
    color: #888;
}

.loja-brindes-bar {
    height: 6px;
    background: #e9e5ff;
    border-radius: 4px;
    overflow: hidden;
}

.loja-brindes-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    border-radius: 4px;
    transition: width 0.25s ease;
}

.cart-page-hint {
    font-size: 0.85rem;
    color: #666;
    margin: 8px 0 16px;
}

.cart-drawer-summary {
    margin: 0 0 10px;
    font-size: 0.88rem;
}

.cart-drawer-summary-row {
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.cart-drawer-summary-row dt {
    font-weight: 400;
    color: #666;
}

.cart-drawer-summary-row dd {
    margin: 0;
    font-weight: 600;
}

.cart-drawer-total-line {
    margin: 0 0 6px;
    font-size: 1rem;
}

.cart-drawer-parcelas {
    margin: 0 0 14px;
    font-size: 0.78rem;
    color: #666;
}

.cart-drawer-checkout {
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.cart-drawer-more {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--orange);
    text-decoration: none;
}

.cart-drawer-more:hover {
    text-decoration: underline;
}

.cart-drawer-entrega {
    margin: 14px 0 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.cart-drawer-entrega-title {
    margin: 0 0 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
}

.cart-drawer-frete-opt-endereco {
    display: block;
    font-size: 0.72rem;
    color: #666;
    margin-top: 4px;
    line-height: 1.35;
}

.cart-drawer-cep-label {
    margin: 0 0 6px;
    font-size: 0.8rem;
    color: #444;
    line-height: 1.4;
}

.cart-drawer-cep-alterar {
    border: 0;
    background: none;
    color: var(--orange);
    font-size: 0.78rem;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 6px;
}

.cart-drawer-endereco-line {
    margin: 0 0 10px;
    font-size: 0.75rem;
    color: #888;
}

.cart-drawer-cep-form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #555;
}

.cart-drawer-cep-row {
    display: flex;
    gap: 8px;
}

.cart-drawer-cep-input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.88rem;
}

.cart-drawer-cep-msg {
    margin: 6px 0 0;
    font-size: 0.75rem;
    color: #888;
}

.cart-drawer-cep-msg.is-error {
    color: #c00;
}

.cart-drawer-frete-opcoes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.cart-drawer-frete-opt {
    display: block;
    cursor: pointer;
}

.cart-drawer-frete-opt input {
    position: absolute;
    opacity: 0;
}

.cart-drawer-frete-opt-inner {
    display: block;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    padding: 10px 12px;
}

.cart-drawer-frete-opt input:checked + .cart-drawer-frete-opt-inner {
    border-color: var(--orange);
    background: #fffaf5;
}

.cart-drawer-frete-opt-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.cart-drawer-frete-opt-price {
    display: block;
    font-size: 0.85rem;
}

.cart-drawer-frete-opt-prazo {
    display: block;
    font-size: 0.72rem;
    color: #888;
    margin-top: 4px;
}

.cart-drawer-frete-old {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    margin-right: 4px;
}

.cart-drawer-frete-free {
    color: #2a7a2a;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.82rem;
}

.cart-page-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-page-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}

.cart-page-item img {
    object-fit: contain;
    border-radius: 6px;
    background: #f5f5f5;
}

.cart-page-item-info h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
}

.cart-page-attrs {
    font-size: 0.82rem;
    color: #666;
    margin: 0 0 4px;
}

.cart-page-total {
    font-size: 1.15rem;
    margin: 20px 0;
}

.cart-page-remove {
    border: 0;
    background: none;
    color: #c00;
    cursor: pointer;
    font-size: 0.82rem;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .qs-modal {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-height: 92vh;
        border-radius: 16px 16px 0 0;
    }

    .qs-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .qs-gallery {
        min-height: 200px;
    }
}
