        :root {
            --rs-primary: #ff4d6d;
            --rs-primary-dark: #c9184a;
            --rs-secondary: #ffafcc;
            --rs-accent: #ffd166;
            --rs-dark: #1a1a2e;
            --rs-light: #fff7f9;
            --rs-tiktok: #fe2c55;
            --rs-tiktok-cyan: #25f4ee;
            --rs-gray: #f5f5f7;
        }
        body { font-family: 'Poppins', sans-serif; background: var(--rs-light); }
        body.modal-open { overflow: hidden; }

        /* ============ TOP STRIP ============ */
        .rs-top-strip {
            background: linear-gradient(90deg, var(--rs-dark) 0%, var(--rs-primary-dark) 100%);
            color: #fff; text-align: center; padding: 7px 12px;
            font-size: 13px; font-weight: 500; letter-spacing: .3px;
            position: fixed; top: 0; left: 0; right: 0; z-index: 1031;
        }
        .rs-with-strip nav.navbar.fixed-top { top: 36px !important; }

        /* ============ DISCOUNT MEGA STRIP ============ */
        .rs-discount-strip {
            position: fixed; left: 0; right: 0; z-index: 1030;
            padding: 12px 16px; text-align: center; font-weight: 700;
            font-size: 15px; letter-spacing: .5px; text-transform: uppercase;
            box-shadow: 0 4px 18px rgba(0,0,0,0.08); display: none;
        }
        .rs-discount-strip.active { display: block; animation: rs-pulse-bg 2.5s infinite ease-in-out; }
        .rs-discount-strip .rs-disc-emoji { display: inline-block; animation: rs-bounce 1.2s infinite; margin: 0 6px; }
        .rs-discount-strip .rs-disc-cd { font-variant-numeric: tabular-nums; background: rgba(0,0,0,0.18); padding: 2px 10px; border-radius: 8px; margin-left: 8px; }
        @keyframes rs-pulse-bg { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.12); } }
        @keyframes rs-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
        /* Só desconto (sem topStrip) — empurra navbar só pelo desconto */
        body.rs-with-discount nav.navbar.fixed-top { top: 42px !important; }
        /* Desconto + topStrip — soma as duas alturas (a regra mais específica ganha) */
        body.rs-with-strip.rs-with-discount nav.navbar.fixed-top { top: calc(36px + 42px) !important; }

        /* ============ COMPENSAÇÃO GLOBAL: containers de páginas internas que têm padding-top hardcoded
           (checkout, search, product, storecheckout, ecommerce) — quando strip/desconto está ativo,
           a navbar cresce em altura, e estes containers precisam empurrar o conteúdo pra não cobrir. ============ */
        body.rs-with-strip .checkout-container,
        body.rs-with-strip .checkout-container-legacy,
        body.rs-with-strip .product-page-header,
        body.rs-with-strip .search-header,
        body.rs-with-strip .rs-ecom-products { margin-top: 36px; }

        body.rs-with-discount .checkout-container,
        body.rs-with-discount .checkout-container-legacy,
        body.rs-with-discount .product-page-header,
        body.rs-with-discount .search-header,
        body.rs-with-discount .rs-ecom-products { margin-top: 42px; }

        body.rs-with-strip.rs-with-discount .checkout-container,
        body.rs-with-strip.rs-with-discount .checkout-container-legacy,
        body.rs-with-strip.rs-with-discount .product-page-header,
        body.rs-with-strip.rs-with-discount .search-header,
        body.rs-with-strip.rs-with-discount .rs-ecom-products { margin-top: 78px; }

        /* ============ NAVBAR (transparente sobre hero → branca ao rolar) ============ */
        /* Estado padrão (sobre o hero escuro) */
        nav.navbar.fixed-top.theme-nav {
            background: transparent !important;
            box-shadow: none;
            transition: background .35s ease, box-shadow .35s ease, padding .25s ease;
            padding-top: 6px; padding-bottom: 6px;
        }
        /* Sutil gradiente preto no topo do hero pra reforçar o contraste do menu */
        body::before {
            content: ''; position: fixed; top: 0; left: 0; right: 0; height: 110px;
            background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 100%);
            pointer-events: none; z-index: 1020;
            transition: opacity .35s ease;
        }
        body.rs-scrolled::before { opacity: 0; }

        /* Texto da nav e logo BRANCOS sobre o hero (exclui os botões CTA que já têm cor própria) */
        nav.navbar.fixed-top.theme-nav .nav-link:not(.btn) {
            color: #fff !important;
            text-shadow: 0 1px 6px rgba(0,0,0,.4);
            font-weight: 600;
        }
        nav.navbar.fixed-top.theme-nav .nav-item:hover .nav-link:not(.btn) { color: var(--rs-accent) !important; }
        /* Garante texto branco nos botões CTA em qualquer estado (eles têm fundo escuro/colorido) */
        nav.navbar.fixed-top.theme-nav .btn-custom.theme-color,
        nav.navbar.fixed-top.theme-nav .btn-custom.theme-color2 {
            color: #fff !important;
            text-shadow: none !important;
        }
        nav.navbar.fixed-top.theme-nav .navbar-brand img {
            filter: brightness(0) invert(1);
            transition: filter .35s ease;
        }
        /* Hamburger (mobile) branco */
        nav.navbar.fixed-top.theme-nav .navbar-toggler {
            border-color: rgba(255,255,255,.5);
        }
        nav.navbar.fixed-top.theme-nav .navbar-toggler-icon {
            filter: invert(1) brightness(1.8);
        }

        /* CTAs no menu (Consultas / Sweet Store) - cores do ecommerce, não roxo do template antigo */
        nav.navbar.fixed-top.theme-nav .btn-custom.theme-color {
            background: var(--rs-primary) !important;
            background-image: none !important;
            box-shadow: 0 6px 18px rgba(255,77,109,.35);
        }
        nav.navbar.fixed-top.theme-nav .btn-custom.theme-color:hover {
            background: var(--rs-primary-dark) !important;
        }
        nav.navbar.fixed-top.theme-nav .btn-custom.theme-color2 {
            background: var(--rs-dark) !important;
            background-image: none !important;
            box-shadow: 0 6px 18px rgba(0,0,0,.3);
        }
        nav.navbar.fixed-top.theme-nav .btn-custom.theme-color2:hover {
            background: #2d2d44 !important;
        }

        /* ===== Estado quando rola: navbar branca, texto escuro, logo colorido ===== */
        body.rs-scrolled nav.navbar.fixed-top.theme-nav {
            background: #fff !important;
            box-shadow: 0 4px 22px rgba(0,0,0,.08);
            padding-top: 2px; padding-bottom: 2px;
        }
        body.rs-scrolled nav.navbar.fixed-top.theme-nav .nav-link:not(.btn) {
            color: #1a1a2e !important;
            text-shadow: none;
        }
        body.rs-scrolled nav.navbar.fixed-top.theme-nav .navbar-brand img {
            filter: none;
        }
        body.rs-scrolled nav.navbar.fixed-top.theme-nav .navbar-toggler {
            border-color: rgba(26,26,46,.3);
        }
        body.rs-scrolled nav.navbar.fixed-top.theme-nav .navbar-toggler-icon {
            filter: none;
        }
        body.rs-scrolled nav.navbar.fixed-top.theme-nav .nav-item:hover .nav-link { color: var(--rs-primary) !important; }

        /* ===== Páginas internas (NÃO home): navbar branca por default — fundo branco do conteúdo
           torna texto/logo branco invisíveis. Espelha o estado .rs-scrolled. ===== */
        body.rs-not-home nav.navbar.fixed-top.theme-nav {
            background: #fff !important;
            box-shadow: 0 4px 22px rgba(0,0,0,.08);
            padding-top: 2px; padding-bottom: 2px;
        }
        body.rs-not-home nav.navbar.fixed-top.theme-nav .nav-link:not(.btn) {
            color: #1a1a2e !important;
            text-shadow: none;
        }
        body.rs-not-home nav.navbar.fixed-top.theme-nav .navbar-brand img { filter: none; }
        body.rs-not-home nav.navbar.fixed-top.theme-nav .navbar-toggler { border-color: rgba(26,26,46,.3); }
        body.rs-not-home nav.navbar.fixed-top.theme-nav .navbar-toggler-icon { filter: none; }
        body.rs-not-home nav.navbar.fixed-top.theme-nav .nav-item:hover .nav-link { color: var(--rs-primary) !important; }
        /* Esconde o gradient escuro do topo (que era pro hero da home) */
        body.rs-not-home::before { opacity: 0 !important; }

        /* Quando menu mobile abrir, dar fundo branco mesmo se estiver "transparente" */
        @media (max-width: 991px) {
            nav.navbar.fixed-top.theme-nav .navbar-collapse.show,
            nav.navbar.fixed-top.theme-nav .navbar-collapse.collapsing {
                background: #fff;
                border-radius: 12px;
                padding: 12px;
                margin-top: 8px;
                box-shadow: 0 8px 24px rgba(0,0,0,.12);
            }
            nav.navbar.fixed-top.theme-nav .navbar-collapse.show .nav-link:not(.btn) {
                color: #1a1a2e !important;
                text-shadow: none;
            }
        }

        /* ============ HERO (fullscreen image slider) ============ */
        .rs-hero {
            position: relative; width: 100vw; left: 50%; right: 50%;
            margin-left: -50vw; margin-right: -50vw;
            background: #1a1a2e; overflow: hidden;
            margin-top: 0; padding: 0;
        }
        .rs-hero-carousel {
            position: relative; width: 100%;
            height: clamp(520px, 78vh, 760px);
            background: #1a1a2e;
        }
        @media (max-width: 768px) {
            .rs-hero-carousel { height: clamp(440px, 75vh, 640px); }
        }
        .rs-hero-slide {
            position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease;
            background-size: cover; background-position: center;
            display: flex; align-items: center;
        }
        .rs-hero-slide.active { opacity: 1; z-index: 2; }
        /* Ken Burns: zoom lento na imagem ativa */
        .rs-hero-slide.active { animation: rs-kenburns 14s ease-out forwards; }
        @keyframes rs-kenburns {
            0% { background-size: 110%; background-position: center 45%; }
            100% { background-size: 122%; background-position: center 55%; }
        }
        /* Entrada do texto a cada slide ativo */
        .rs-hero-slide.active .rs-hero-content > * { animation: rs-fade-up .8s ease-out both; }
        .rs-hero-slide.active .rs-hero-content > *:nth-child(1) { animation-delay: .15s; }
        .rs-hero-slide.active .rs-hero-content > *:nth-child(2) { animation-delay: .30s; }
        .rs-hero-slide.active .rs-hero-content > *:nth-child(3) { animation-delay: .45s; }
        .rs-hero-slide.active .rs-hero-content > *:nth-child(4) { animation-delay: .60s; }
        @keyframes rs-fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .rs-hero-slide a.rs-slide-link { position: absolute; inset: 0; z-index: 1; display: block; }
        .rs-hero-slide .rs-hero-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,0) 75%),
                        linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.45) 100%);
            pointer-events: none;
        }
        .rs-hero-content {
            position: relative; z-index: 3; padding: 0 max(40px, 6vw); color: #fff;
            max-width: 720px; pointer-events: none;
        }
        .rs-hero-content > * { pointer-events: auto; }
        .rs-hero-badge {
            display: inline-block; background: var(--rs-primary); color: #fff;
            padding: 6px 18px; border-radius: 50px; font-size: 11px;
            font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px;
            box-shadow: 0 6px 16px rgba(255,77,109,.45);
        }
        .rs-hero-title { font-size: clamp(32px, 5vw, 68px); font-weight: 800; line-height: 1.05;
            margin: 0 0 16px; letter-spacing: -1.5px; color: #fff;
            text-shadow: 0 4px 24px rgba(0,0,0,.5); }
        .rs-hero-title .rs-highlight { color: var(--rs-accent); }
        .rs-hero-sub { font-size: clamp(15px, 1.6vw, 19px); color: #fff; margin-bottom: 28px; line-height: 1.55;
            text-shadow: 0 2px 12px rgba(0,0,0,.5); max-width: 560px; }
        .rs-hero-cta {
            display: inline-flex; align-items: center; gap: 10px;
            background: #fff; color: var(--rs-primary-dark); padding: 16px 36px;
            border-radius: 60px; font-weight: 700; text-decoration: none; font-size: 15px;
            box-shadow: 0 12px 28px rgba(0,0,0,.3); transition: all .25s ease;
        }
        .rs-hero-cta:hover { transform: translateY(-3px); color: var(--rs-primary-dark); box-shadow: 0 18px 36px rgba(0,0,0,.35); }

        /* Setas e dots */
        .rs-hero-arrow {
            position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
            width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.18);
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,.3);
            color: #fff; display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all .25s; font-size: 20px;
        }
        .rs-hero-arrow:hover { background: rgba(255,255,255,.35); transform: translateY(-50%) scale(1.08); }
        .rs-hero-arrow.prev { left: 24px; }
        .rs-hero-arrow.next { right: 24px; }
        @media (max-width: 768px) {
            .rs-hero-arrow { width: 40px; height: 40px; font-size: 16px; }
            .rs-hero-arrow.prev { left: 12px; }
            .rs-hero-arrow.next { right: 12px; }
        }
        .rs-hero-dots { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 5;
            display: flex; justify-content: center; gap: 10px; }
        .rs-hero-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4);
            cursor: pointer; transition: all .3s; border: none; padding: 0; }
        .rs-hero-dots .dot.active { background: #fff; width: 32px; border-radius: 6px; }

        /* === Categorias compactas (chips horizontais) === */
        .rs-cats-strip {
            background: #fff; border-radius: 14px; padding: 10px 16px; margin-top: 18px;
            box-shadow: 0 6px 20px rgba(0,0,0,.05);
            display: flex; align-items: center; gap: 8px; overflow-x: auto;
            scrollbar-width: thin;
        }
        /* Wrapper que cola categorias + stats sem espaço entre eles */
        .rs-top-block { padding-top: 0; padding-bottom: 0; }
        .rs-cats-strip::-webkit-scrollbar { height: 4px; }
        .rs-cats-strip::-webkit-scrollbar-thumb { background: #e9ecef; border-radius: 4px; }
        .rs-cats-strip .rs-cats-label {
            flex-shrink: 0; font-weight: 700; font-size: 13px; color: var(--rs-dark);
            text-transform: uppercase; letter-spacing: 1px; padding-right: 8px; border-right: 1px solid #eee;
        }
        .rs-cat-chip {
            flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 16px; border-radius: 50px; background: var(--rs-light);
            color: var(--rs-dark); text-decoration: none; font-weight: 600; font-size: 13px;
            transition: all .2s ease; border: 1px solid transparent;
        }
        .rs-cat-chip:hover { background: var(--rs-primary); color: #fff; transform: translateY(-1px); }
        .rs-cat-chip i { font-size: 13px; color: var(--rs-primary); transition: color .2s; }
        .rs-cat-chip:hover i { color: #fff; }
        @media (max-width: 576px) {
            .rs-cats-strip .rs-cats-label { display: none; }
        }

        /* ============ STATS BAR ============ */
        .rs-stats { background: #fff; border-radius: 14px; padding: 14px 10px;
            box-shadow: 0 6px 20px rgba(0,0,0,.05); margin-top: 10px; position: relative; z-index: 5;
            display: flex; flex-wrap: wrap; align-items: center; }
        /* Cada item ocupa fração igual do espaço disponível — quando um é escondido (display:none),
           os demais expandem automaticamente. !important sobrescreve as classes col-* do Bootstrap. */
        .rs-stats .rs-stat-item { flex: 1 1 0 !important; width: auto !important; max-width: 100% !important;
            text-align: center; padding: 4px 4px; }
        @media (max-width: 767px) {
            .rs-stats .rs-stat-item { flex: 1 1 50% !important; max-width: 50% !important; }
        }
        .rs-stat-item i { font-size: 20px; color: var(--rs-primary); margin-bottom: 2px; }
        .rs-stat-item h6 { font-weight: 700; margin: 2px 0 1px; font-size: 13px; color: var(--rs-dark); }
        .rs-stat-item p { font-size: 11px; color: #6c757d; margin: 0; line-height: 1.35; }

        /* ============ Spacing system (consistente) ============ */
        .rs-section { padding: 36px 0; }
        .rs-section.tight { padding: 18px 0; }
        .rs-section.no-bottom { padding-bottom: 0; }
        .rs-section.no-top { padding-top: 0; }
        @media (max-width: 768px) { .rs-section { padding: 26px 0; } }

        /* ============ Section header com botão Ver tudo ============ */
        .rs-section-head { display: flex; justify-content: space-between; align-items: end;
            flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
        .rs-section-head.centered { justify-content: center; flex-direction: column; align-items: center; text-align: center; }
        .rs-section-head.centered .rs-section-title { margin-bottom: 4px; }
        .rs-section-head.centered .rs-section-sub { margin-bottom: 10px; }
        .rs-btn-ghost {
            display: inline-flex; align-items: center; gap: 6px;
            background: transparent !important; color: var(--rs-primary-dark) !important;
            border: 1.5px solid var(--rs-primary) !important; padding: 9px 22px !important;
            border-radius: 50px !important; font-weight: 700 !important; font-size: 13px !important;
            text-decoration: none !important; transition: all .2s ease;
            line-height: 1; box-shadow: none !important;
        }
        .rs-btn-ghost:hover, .rs-btn-ghost:focus {
            background: var(--rs-primary) !important; color: #fff !important;
            border-color: var(--rs-primary) !important; transform: translateY(-2px);
        }

        /* ============ TIKTOK LIVE BANNER ============ */
        .rs-tiktok-live {
            position: relative; border-radius: 24px; overflow: hidden; margin: 50px 0 20px;
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            color: #fff; padding: 36px 32px; display: flex; align-items: center; gap: 28px;
            box-shadow: 0 20px 60px rgba(0,0,0,.4);
        }
        .rs-tiktok-live::before {
            content:''; position:absolute; inset:0;
            background: radial-gradient(circle at 0% 50%, rgba(254,44,85,.4) 0%, transparent 50%),
                        radial-gradient(circle at 100% 50%, rgba(37,244,238,.3) 0%, transparent 50%);
            opacity: .9;
        }
        .rs-tiktok-live > * { position: relative; z-index: 2; }
        .rs-tiktok-thumb {
            width: 140px; height: 140px; border-radius: 50%;
            background-size: cover; background-position: center;
            border: 4px solid #fff; flex-shrink: 0; position: relative;
            box-shadow: 0 0 0 0 rgba(254,44,85,.6); animation: rs-live-pulse 1.8s infinite;
        }
        @keyframes rs-live-pulse {
            0% { box-shadow: 0 0 0 0 rgba(254,44,85,.7); }
            70% { box-shadow: 0 0 0 22px rgba(254,44,85,0); }
            100% { box-shadow: 0 0 0 0 rgba(254,44,85,0); }
        }
        .rs-tiktok-live h3 { font-weight: 800; font-size: 26px; margin: 0 0 8px; }
        .rs-tiktok-live .rs-live-tag {
            display:inline-flex; align-items:center; gap:6px;
            background: var(--rs-tiktok); color:#fff; padding: 4px 12px;
            border-radius: 6px; font-size: 11px; font-weight: 700;
            letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px;
        }
        .rs-tiktok-live .rs-live-tag .rs-live-dot {
            width: 8px; height: 8px; border-radius: 50%; background: #fff;
            animation: rs-blink 1s infinite;
        }
        @keyframes rs-blink { 50% { opacity: 0; } }
        .rs-tiktok-live p { color: #e9ecef; margin-bottom: 18px; }
        .rs-tiktok-live .rs-tiktok-cta {
            display: inline-flex; align-items:center; gap:10px;
            background: var(--rs-tiktok); color:#fff; padding: 14px 28px;
            border-radius: 50px; font-weight: 700; text-decoration: none; transition: all .25s ease;
        }
        .rs-tiktok-live .rs-tiktok-cta:hover { transform: translateY(-3px); background: #ff1f4b; color: #fff; }

        .rs-tiktok-floating {
            position: fixed; bottom: 30px; left: 30px; z-index: 990;
            display: flex; align-items: center; gap: 10px;
            background: #000; color: #fff; padding: 8px 18px 8px 8px;
            border-radius: 60px; text-decoration: none;
            box-shadow: 0 8px 24px rgba(0,0,0,.3); transition: transform .25s;
        }
        .rs-tiktok-floating:hover { transform: translateY(-4px); color: #fff; }
        .rs-tiktok-floating .rs-tk-avatar {
            width: 44px; height: 44px; border-radius: 50%; background-size: cover; background-position: center;
            border: 2px solid var(--rs-tiktok); animation: rs-live-pulse 1.8s infinite;
        }
        .rs-tiktok-floating .rs-tk-label { font-size: 13px; font-weight: 700; line-height: 1.1; }
        .rs-tiktok-floating .rs-tk-label small { display:block; font-size: 10px; color: var(--rs-tiktok); font-weight: 700; letter-spacing: 1px; }

        /* ============ CATEGORY GRID ============ */
        .rs-section-title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--rs-dark); margin-bottom: 6px; letter-spacing: -.5px; }
        .rs-section-title span { color: var(--rs-primary); }
        .rs-section-sub { color: #6c757d; margin-bottom: 30px; }

        .rs-cat-card {
            background: #fff; border-radius: 20px; padding: 26px 18px; text-align: center;
            box-shadow: 0 6px 22px rgba(0,0,0,.05); cursor: pointer; transition: all .3s ease;
            height: 100%; display: block; text-decoration: none; color: var(--rs-dark);
        }
        .rs-cat-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(255,77,109,.18); color: var(--rs-primary-dark); }
        .rs-cat-icon {
            width: 70px; height: 70px; margin: 0 auto 14px;
            border-radius: 50%; background: linear-gradient(135deg, var(--rs-secondary), var(--rs-primary));
            display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px;
            box-shadow: 0 8px 18px rgba(255,77,109,.25);
        }
        .rs-cat-card h6 { font-weight: 700; margin: 0 0 4px; font-size: 15px; }
        .rs-cat-card small { color: #adb5bd; font-size: 12px; }

        /* ============ PRODUCT CARD ============ */
        .rs-product-card { position: relative; background: #fff; border-radius: 20px; overflow: hidden;
            box-shadow: 0 6px 22px rgba(0,0,0,.06); transition: all .3s ease; height: 100%;
            display: flex; flex-direction: column; }
        .rs-product-card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(0,0,0,.12); }
        .rs-product-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #f8f9fa; }
        .rs-product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
        .rs-product-card:hover .rs-product-thumb img { transform: scale(1.08); }
        .rs-badge { position: absolute; top: 12px; left: 12px; padding: 5px 12px; border-radius: 30px;
            font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #fff; z-index: 2; }
        .rs-badge.rs-badge-discount { background: var(--rs-primary); }
        .rs-badge.rs-badge-new { background: var(--rs-dark); top: auto; bottom: 12px; left: 12px; }
        .rs-quick-add { position: absolute; bottom: 12px; right: 12px; width: 44px; height: 44px;
            border-radius: 50%; background: #fff; color: var(--rs-primary); display: flex;
            align-items: center; justify-content: center; border: none; box-shadow: 0 4px 14px rgba(0,0,0,.15);
            cursor: pointer; transition: all .25s; z-index: 2; opacity: 0; transform: translateY(8px); }
        .rs-product-card:hover .rs-quick-add { opacity: 1; transform: translateY(0); }
        .rs-quick-add:hover { background: var(--rs-primary); color: #fff; }
        .rs-product-body { padding: 16px 18px 20px; flex-grow: 1; display: flex; flex-direction: column; }
        .rs-product-cat { font-size: 11px; color: #adb5bd; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
        .rs-product-name { font-weight: 600; font-size: 15px; color: var(--rs-dark); text-decoration: none; line-height: 1.35;
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 41px; }
        .rs-product-name:hover { color: var(--rs-primary); }
        .rs-product-rating { color: var(--rs-accent); font-size: 12px; margin: 6px 0 8px; }
        .rs-product-rating .text-muted { color: #adb5bd; font-size: 11px; margin-left: 4px; }
        .rs-product-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
        .rs-price-current { font-weight: 800; color: var(--rs-primary-dark); font-size: 18px; }
        .rs-price-old { text-decoration: line-through; color: #adb5bd; font-size: 13px; }
        .rs-installments { font-size: 11px; color: #6c757d; margin-top: 4px; }

        /* ============ PROMO BANNER ============ */
        .rs-promo-banner {
            border-radius: 28px; overflow: hidden; min-height: 240px;
            background: linear-gradient(135deg, var(--rs-dark) 0%, #2d2d44 100%);
            color: #fff; padding: 36px; display: flex; flex-direction: column; justify-content: center;
            position: relative; box-shadow: 0 20px 50px rgba(0,0,0,.2);
        }
        .rs-promo-banner.rs-promo-2 { background: linear-gradient(135deg, var(--rs-accent) 0%, #ff8c42 100%); color: var(--rs-dark); }
        .rs-promo-banner h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -.5px; margin: 4px 0 8px; color: #fff; }
        .rs-promo-banner.rs-promo-2 h3 { color: var(--rs-dark); }
        .rs-promo-banner .rs-promo-tag { font-size: 11px; letter-spacing: 2px; color: #fff; text-transform: uppercase; font-weight: 700; }
        .rs-promo-banner.rs-promo-2 .rs-promo-tag { color: var(--rs-dark); }
        .rs-promo-banner .rs-promo-text { color: #fff; font-size: 14px; margin: 0; line-height: 1.5; }
        .rs-promo-banner.rs-promo-2 .rs-promo-text { color: rgba(26,26,46,.85); }
        .rs-promo-banner .rs-promo-cta { display: inline-block; align-self: flex-start; margin-top: 18px;
            padding: 12px 26px; background: #fff; color: var(--rs-dark); border-radius: 50px;
            font-weight: 700; text-decoration: none; transition: transform .25s; }
        .rs-promo-banner.rs-promo-2 .rs-promo-cta { background: var(--rs-dark); color: #fff; }
        .rs-promo-banner .rs-promo-cta:hover { transform: translateY(-2px); }

        /* ============ FEATURES BAND (compact) ============ */
        .rs-features { background: #fff; padding: 18px 10px; margin-top: 0; border-radius: 18px;
            box-shadow: 0 6px 22px rgba(0,0,0,.04); }
        .rs-feat-item { text-align: center; padding: 6px 4px; }
        .rs-feat-item i { font-size: 20px; color: var(--rs-primary); margin-bottom: 2px; }
        .rs-feat-item h6 { font-weight: 700; margin: 2px 0 1px; font-size: 13px; color: var(--rs-dark); }
        .rs-feat-item p { font-size: 11px; color: #6c757d; margin: 0; line-height: 1.35; }

        /* ============ SECURITY SEALS ============ */
        .rs-seals { background: #fff; border-radius: 20px; padding: 22px;
            box-shadow: 0 6px 22px rgba(0,0,0,.04); margin-top: 18px; }
        .rs-seals-title { font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
            color: #adb5bd; text-align: center; margin-bottom: 14px; font-weight: 700; }
        .rs-seals-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 26px; }
        .rs-seal {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--rs-light); padding: 8px 14px; border-radius: 50px;
            font-size: 12px; font-weight: 700; color: var(--rs-dark); border: 1px solid #f1f3f5;
        }
        .rs-seal i { color: #2ecc71; font-size: 16px; }
        .rs-seal.brand { background: #fff; border-color: #e9ecef; }
        .rs-seal.brand img { height: 22px; object-fit: contain; }

        /* ============ APP DOWNLOAD ============ */
        .rs-app-band {
            background: linear-gradient(135deg, var(--rs-dark) 0%, #2d2d44 100%);
            color: #fff; border-radius: 28px; padding: 36px; margin-top: 40px;
            display: flex; align-items: center; gap: 28px; position: relative; overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,.2);
        }
        .rs-app-band::before {
            content: ''; position: absolute; top: -40%; right: -10%; width: 60%; height: 200%;
            background: radial-gradient(circle, rgba(255,77,109,.25) 0%, transparent 60%);
            pointer-events: none;
        }
        .rs-app-band > * { position: relative; z-index: 2; }
        .rs-app-band h3 { font-weight: 800; font-size: clamp(22px, 3vw, 30px); margin: 0 0 8px; color: #fff; }
        .rs-app-band p { color: rgba(255,255,255,.85); margin: 0 0 16px; line-height: 1.5; }
        .rs-app-stores { display: flex; gap: 12px; flex-wrap: wrap; }
        .rs-store-btn {
            display: inline-flex; align-items: center; gap: 10px;
            background: #000; color: #fff; padding: 10px 20px; border-radius: 14px;
            text-decoration: none; border: 1px solid rgba(255,255,255,.15);
            transition: transform .2s;
        }
        .rs-store-btn:hover { transform: translateY(-3px); color: #fff; background: #000; }
        .rs-store-btn i { font-size: 28px; }
        .rs-store-btn .rs-store-lbl { font-size: 10px; opacity: .8; line-height: 1; text-transform: uppercase; letter-spacing: 1px; }
        .rs-store-btn .rs-store-name { font-size: 16px; font-weight: 700; line-height: 1.1; }
        @media (max-width: 768px) {
            .rs-app-band { flex-direction: column; text-align: center; padding: 26px 20px; }
            .rs-app-stores { justify-content: center; }
        }

        /* ============ TESTIMONIALS ============ */
        .rs-testimonials { margin: 30px 0; }
        .rs-tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
        @media (max-width: 992px) { .rs-tst-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 576px) { .rs-tst-grid { grid-template-columns: 1fr; } }
        .rs-tst-card {
            background: #fff; border-radius: 18px; padding: 22px;
            box-shadow: 0 6px 22px rgba(0,0,0,.05); position: relative;
            display: flex; flex-direction: column; gap: 12px;
        }
        .rs-tst-card::before {
            content: '\201C'; position: absolute; top: 8px; right: 18px;
            font-size: 60px; color: var(--rs-primary); opacity: .15; font-family: Georgia, serif;
            line-height: 1;
        }
        .rs-tst-stars { color: var(--rs-accent); font-size: 14px; }
        .rs-tst-text { color: #495057; font-size: 14px; line-height: 1.55; margin: 0; flex-grow: 1; }
        .rs-tst-author { display: flex; align-items: center; gap: 10px; margin-top: 4px;
            border-top: 1px solid #f1f3f5; padding-top: 12px; }
        .rs-tst-avatar { width: 42px; height: 42px; border-radius: 50%;
            background: linear-gradient(135deg, var(--rs-primary), var(--rs-primary-dark));
            color: #fff; display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 16px; flex-shrink: 0;
            background-size: cover; background-position: center;
        }
        .rs-tst-meta strong { display: block; font-size: 13px; color: var(--rs-dark); }
        .rs-tst-meta small { color: #adb5bd; font-size: 11px; }

        /* ============ FOOTER ============ */
        .rs-footer {
            background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
            color: #c0c0d0; padding: 60px 0 0; margin-top: 60px;
        }
        .rs-footer h5 { color: #fff; font-weight: 700; font-size: 14px; text-transform: uppercase;
            letter-spacing: 1.5px; margin-bottom: 18px; }
        .rs-footer p, .rs-footer a, .rs-footer li { color: #b0b0c0; font-size: 13px; line-height: 1.7;
            text-decoration: none; }
        .rs-footer a:hover { color: var(--rs-primary); }
        .rs-footer ul { list-style: none; padding: 0; margin: 0; }
        .rs-footer .rs-footer-brand img { height: 50px; margin-bottom: 14px; }
        .rs-footer-socials {
            display: flex; gap: 12px; justify-content: center; margin-top: 4px;
        }
        .rs-footer-socials a {
            width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08);
            display: inline-flex; align-items: center; justify-content: center;
            color: #fff !important; font-size: 18px; transition: all .25s;
        }
        .rs-footer-socials a:hover { background: var(--rs-primary); transform: translateY(-3px) scale(1.08); color: #fff !important; box-shadow: 0 10px 24px rgba(255,77,109,.35); }
        .rs-footer-contact li { display: flex; gap: 10px; margin-bottom: 8px; }
        .rs-footer-contact i { color: var(--rs-primary); margin-top: 4px; flex-shrink: 0; }

        /* Bloco central com redes sociais + pagamento + copyright */
        .rs-footer-center {
            border-top: 1px solid rgba(255,255,255,.08);
            margin-top: 36px; padding-top: 28px; text-align: center;
        }
        .rs-footer-socials-label,
        .rs-footer-pay-label {
            font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
            color: #8a8aa0; margin-bottom: 12px; font-weight: 700;
        }
        .rs-footer-pay-label { margin-top: 28px; }
        .rs-footer-pay {
            display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
        }
        .rs-footer-pay span {
            background: rgba(255,255,255,.06); padding: 7px 14px; border-radius: 8px;
            font-size: 11.5px; font-weight: 600; color: #fff;
            display: inline-flex; align-items: center; gap: 6px;
        }
        .rs-footer-bottom {
            padding: 18px 0 4px; margin-top: 22px;
            text-align: center; font-size: 12px; color: #888;
            border-top: 1px solid rgba(255,255,255,.05);
        }
        .rs-footer-bottom a { color: #b0b0c0; }
        .rs-footer-app-cta { background: rgba(255,77,109,.08); border: 1px solid rgba(255,77,109,.2);
            border-radius: 14px; padding: 16px; margin-top: 14px; }
        .rs-footer-app-cta strong { color: #fff; display: block; margin-bottom: 4px; }
        .rs-footer-app-cta a { color: var(--rs-primary); font-weight: 700; }

        /* Esconde o footer template antigo */
        body .copyright-section.index-footer,
        body section.p-0 .bottom-section { display: none !important; }

        /* ============ SKELETON ============ */
        .rs-skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #fafafa 50%, #f0f0f0 75%);
            background-size: 200% 100%; animation: rs-shimmer 1.4s infinite; border-radius: 14px; }
        @keyframes rs-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
        .rs-skel-card { background: #fff; border-radius: 20px; padding: 0; overflow: hidden; }
        .rs-skel-card .rs-skel-img { aspect-ratio: 1/1; }
        .rs-skel-card .rs-skel-line { height: 12px; margin: 12px 16px; }
        .rs-skel-card .rs-skel-line.s { height: 10px; width: 40%; }

        /* ============ FLOATING CART ============ */
        .floating-cart { position: fixed; bottom: 30px; right: 30px; background: var(--rs-primary);
            color: #fff; width: 60px; height: 60px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 8px 24px rgba(255,77,109,.5); cursor: pointer; z-index: 990; transition: transform .2s; }
        .floating-cart:hover { transform: scale(1.05); }
        .cart-count { position: absolute; top: -4px; right: -4px; background: var(--rs-dark);
            color: #fff; font-size: 12px; font-weight: 700; min-width: 22px; height: 22px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            border: 2px solid #fff; padding: 0 5px; }
        .cart-sidebar-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1040; display: none; }
        .cart-sidebar { position: fixed; top: 0; right: -420px; width: 420px; max-width: 90%; height: 100%;
            background: #fff; z-index: 1050; transition: right .35s ease-in-out; display: flex; flex-direction: column;
            box-shadow: -5px 0 30px rgba(0,0,0,.1); }
        .cart-sidebar.active { right: 0; }
        .cart-header { padding: 22px; border-bottom: 1px solid #e9ecef; display: flex; justify-content: space-between;
            align-items: center; background: var(--rs-light); }
        .cart-body { padding: 22px; overflow-y: auto; flex-grow: 1; }
        .cart-footer { padding: 22px; border-top: 1px solid #e9ecef; }
        .btn-close-custom { background: none; border: none; font-size: 1.2rem; color: #6c757d; cursor: pointer; padding: 5px; }
        .cart-item { display: flex; gap: 15px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid #f1f3f5; }
        .cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; }
        .cart-item-details { flex-grow: 1; }
        .cart-item-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
        .cart-item-price { color: var(--rs-primary); font-weight: 700; }
        .cart-qty-control { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
        .btn-qty { width: 26px; height: 26px; border-radius: 50%; border: 1px solid #ced4da; background: #fff;
            display: flex; align-items: center; justify-content: center; font-size: 12px; cursor: pointer; }
        .btn-remove { color: #dc3545; font-size: 0.8rem; cursor: pointer; margin-left: auto; }

        /* ============ TOAST ============ */
        .rs-toast { position: fixed; top: 96px; right: 24px; z-index: 1060;
            background: var(--rs-dark); color: #fff; padding: 12px 18px; border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,.18); transform: translateX(120%); transition: transform .35s ease;
            display: flex; align-items: center; gap: 10px; min-width: 240px; }
        .rs-toast.show { transform: translateX(0); }
        .rs-toast i { color: #2ecc71; font-size: 18px; }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .rs-hero { padding-top: 0; padding-bottom: 0; }
            .rs-hero-slide { padding: 36px 26px; min-height: 380px; }
            .rs-hero-slide .rs-hero-img { display: none; }
            .rs-hero-cta-ghost { display: block; margin: 12px 0 0; text-align: center; }
            .rs-hero-cta { width: 100%; justify-content: center; }
            .rs-tiktok-live { flex-direction: column; text-align: center; padding: 28px 20px; }
            .rs-tiktok-floating { padding: 6px 14px 6px 6px; }
            .rs-tiktok-floating .rs-tk-avatar { width: 36px; height: 36px; }
            .rs-tiktok-floating .rs-tk-label { font-size: 11px; }
            .rs-newsletter .rs-news-form { flex-direction: column; }
            .cart-sidebar { width: 100%; }
        }
        @media (max-width: 380px) {
            .rs-discount-strip { font-size: 12px; padding: 10px 6px; }
        }

        .loader-wrapper { display: none !important; }

        /* ============ REVEAL ON SCROLL ============ */
        .rs-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
        .rs-reveal.in { opacity: 1; transform: translateY(0); }
        .rs-reveal.delay-1 { transition-delay: .1s; }
        .rs-reveal.delay-2 { transition-delay: .2s; }
        .rs-reveal.delay-3 { transition-delay: .3s; }
        .rs-reveal.delay-4 { transition-delay: .4s; }
        .rs-reveal.scale { transform: translateY(28px) scale(.96); }
        .rs-reveal.scale.in { transform: translateY(0) scale(1); }

        /* ============ COUNTER (animated stats) ============ */
        .rs-counter { font-weight: 800; color: var(--rs-primary-dark); }
        /* Stats agora exibem números grandes acima */
        .rs-stat-item .rs-counter-wrap { font-size: 22px; font-weight: 800; color: var(--rs-primary-dark);
            display: block; line-height: 1.1; margin-bottom: 2px; }

        /* ============ WHATSAPP FLOAT ============ */
        .rs-whats {
            position: fixed; bottom: 100px; right: 30px; z-index: 989;
            width: 56px; height: 56px; border-radius: 50%;
            background: linear-gradient(135deg, #25d366, #1ebe57);
            color: #fff; display: flex; align-items: center; justify-content: center;
            font-size: 26px; box-shadow: 0 8px 24px rgba(37,211,102,.45);
            text-decoration: none; transition: transform .2s;
            animation: rs-whats-pulse 2.6s infinite;
        }
        .rs-whats:hover { transform: scale(1.08) translateY(-2px); color: #fff; }
        @keyframes rs-whats-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 8px 24px rgba(37,211,102,.4); }
            50% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 8px 24px rgba(37,211,102,.5); }
        }
        @media (max-width: 768px) {
            .rs-whats { bottom: 96px; right: 18px; width: 50px; height: 50px; font-size: 22px; }
        }

        /* ============ RECENT PURCHASE TOAST ============ */
        .rs-rp-toast {
            position: fixed; bottom: 24px; left: 24px; z-index: 988;
            background: #fff; color: var(--rs-dark); padding: 12px 18px 12px 12px;
            border-radius: 60px; box-shadow: 0 12px 32px rgba(0,0,0,.18);
            display: flex; align-items: center; gap: 12px; max-width: 340px;
            transform: translateX(-120%); transition: transform .5s cubic-bezier(.2,.9,.3,1.2);
            border: 1px solid rgba(0,0,0,.06);
        }
        /* Quando TikTok Live tá flutuando no canto inferior esquerdo, sobe o toast pra não encavalar */
        body.rs-with-live .rs-rp-toast { bottom: 90px; }
        .rs-rp-toast.show { transform: translateX(0); }
        .rs-rp-toast .rs-rp-avatar { width: 38px; height: 38px; border-radius: 50%;
            background: linear-gradient(135deg, var(--rs-primary), var(--rs-primary-dark));
            color: #fff; display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 14px; flex-shrink: 0; }
        .rs-rp-toast .rs-rp-text { font-size: 12.5px; line-height: 1.35; }
        .rs-rp-toast .rs-rp-text strong { color: var(--rs-dark); }
        .rs-rp-toast .rs-rp-text small { color: #888; display: block; margin-top: 1px; font-size: 11px; }
        .rs-rp-toast .rs-rp-close { position: absolute; top: -6px; right: -6px;
            width: 22px; height: 22px; border-radius: 50%; background: #fff;
            border: 1px solid rgba(0,0,0,.1); color: #888; font-size: 11px; cursor: pointer;
            display: flex; align-items: center; justify-content: center; }
        @media (max-width: 768px) {
            .rs-rp-toast { left: 12px; right: 12px; max-width: none; bottom: 18px; }
        }

        /* ============ WISHLIST (heart no card) ============ */
        .rs-wishlist {
            position: absolute; top: 12px; right: 12px; z-index: 3;
            width: 38px; height: 38px; border-radius: 50%; border: none;
            background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
            color: #adb5bd; cursor: pointer; transition: all .2s;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,.08);
        }
        .rs-wishlist:hover { color: var(--rs-primary); transform: scale(1.1); }
        .rs-wishlist.active { color: var(--rs-primary); animation: rs-heart 0.6s ease; }
        @keyframes rs-heart {
            0% { transform: scale(1); }
            40% { transform: scale(1.4); }
            80% { transform: scale(.9); }
            100% { transform: scale(1); }
        }

        /* ============ FREE-SHIPPING BAR (cart) ============ */
        .rs-ship-bar { background: var(--rs-light); padding: 12px; border-radius: 12px;
            margin-bottom: 14px; font-size: 12.5px; }
        .rs-ship-bar .rs-ship-track { background: #fff; height: 8px; border-radius: 6px;
            overflow: hidden; margin-top: 6px; }
        .rs-ship-bar .rs-ship-fill { height: 100%;
            background: linear-gradient(90deg, var(--rs-primary), var(--rs-accent));
            border-radius: 6px; transition: width .5s ease; }
        .rs-ship-bar strong { color: var(--rs-primary); }

        /* ============ POLISH: hovers, glows ============ */
        .rs-promo-banner { transition: transform .35s ease, box-shadow .35s ease; }
        .rs-promo-banner:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(0,0,0,.28); }
        .rs-promo-banner::after {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(circle at 100% 0%, rgba(255,255,255,.15), transparent 50%);
            pointer-events: none;
        }
        .rs-tst-card { transition: transform .25s ease, box-shadow .25s ease; }
        .rs-tst-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(0,0,0,.1); }
        .rs-cat-chip { transition: transform .2s, background .25s, color .25s, box-shadow .25s; }
        .rs-cat-chip:hover { box-shadow: 0 10px 22px rgba(255,77,109,.3); transform: translateY(-2px) scale(1.04); }
        .rs-stat-item, .rs-feat-item, .rs-seal { transition: transform .2s ease; }
        .rs-stat-item:hover, .rs-feat-item:hover { transform: translateY(-2px); }
        .rs-seal:hover { transform: translateY(-1px); background: #fff; }

        /* Cards de produto: heart, badges */
        .rs-product-card .rs-product-thumb { position: relative; }
        .rs-product-card .rs-product-thumb::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.25));
            opacity: 0; transition: opacity .3s; z-index: 1;
        }
        .rs-product-card:hover .rs-product-thumb::before { opacity: 1; }

        .rs-mini-badge {
            display: inline-flex; align-items: center; gap: 4px;
            background: var(--rs-light); color: var(--rs-primary-dark);
            padding: 3px 10px; border-radius: 50px; font-size: 10.5px; font-weight: 700;
            text-transform: uppercase; letter-spacing: .5px; margin-right: 4px;
        }
        .rs-mini-badge.danger { background: rgba(220,53,69,.1); color: #dc3545; }

        /* Pulsa o ícone de fogo na badge de desconto */
        .rs-badge.rs-badge-discount { animation: rs-pulse-soft 2.2s infinite; }
        @keyframes rs-pulse-soft {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.06); }
        }

        /* Section title: linhas decorativas (apenas nos centered) */
        .rs-section-head.centered .rs-section-title::after {
            content: ''; display: block; width: 60px; height: 4px;
            background: linear-gradient(90deg, var(--rs-primary), var(--rs-accent));
            margin: 12px auto 0; border-radius: 4px;
        }

        /* Subtle background orbs em uma seção pra ter profundidade */
        .rs-section.with-orbs { position: relative; overflow: hidden; }
        .rs-section.with-orbs::before, .rs-section.with-orbs::after {
            content: ''; position: absolute; border-radius: 50%; pointer-events: none;
            filter: blur(80px); opacity: .35; z-index: -1;
        }
        .rs-section.with-orbs::before { width: 320px; height: 320px; background: var(--rs-primary); top: -100px; left: -100px; }
        .rs-section.with-orbs::after { width: 380px; height: 380px; background: var(--rs-accent); bottom: -150px; right: -100px; }

        /* Floating cart melhorado */
        .floating-cart { animation: rs-cart-float 3s ease-in-out infinite; }
        @keyframes rs-cart-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

        /* Smooth scroll */
        html { scroll-behavior: smooth; }

        /* ============ FIX: HERO no iOS (background-size: 110% deixava barra preta nas alturas altas) ============ */
        @media (max-width: 991px) {
            /* Desativa Ken Burns no mobile e força cover full pra não sobrar borda preta */
            .rs-hero-slide.active { animation: none !important; }
            .rs-hero-slide {
                background-size: cover !important;
                background-position: center center !important;
            }
        }

        /* ============ FIX: esconde toast "alguém comprou" no mobile (atrapalhava navegação) ============ */
        @media (max-width: 768px) {
            .rs-rp-toast { display: none !important; }
        }

        /* ============ FIX: footer no mobile — centraliza logo + brand bloc ============ */
        @media (max-width: 768px) {
            .rs-footer .rs-footer-brand,
            .rs-footer .rs-footer-brand p,
            .rs-footer .rs-footer-brand h5 { text-align: center; }
            .rs-footer .rs-footer-brand img { display: block; margin: 0 auto 14px; }
            .rs-footer-socials { justify-content: center; }
        }

        /* ============ FIX: dropdown hamburger — separa os 2 botões (Login + Cadastro) ============ */
        @media (max-width: 991px) {
            nav.navbar.fixed-top.theme-nav .navbar-collapse.show .nav-item,
            nav.navbar.fixed-top.theme-nav .navbar-collapse.collapsing .nav-item { margin-top: 6px; }
            nav.navbar.fixed-top.theme-nav .navbar-collapse.show .btn-custom,
            nav.navbar.fixed-top.theme-nav .navbar-collapse.collapsing .btn-custom {
                display: block; width: 100%; margin-top: 10px;
            }
        }
