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

:root {
    --black: #0a0a0a;
    --gold: #c9a55c;
    --gold-lt: #e2c07a;
    --cream: #f9f7f3;
    --cream2: #f0ece3;
    --white: #ffffff;
    --gray: #7a7a7a;
    --border: #e8e5dc;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(10, 10, 10, .08);
    --shadow-lg: 0 12px 48px rgba(10, 10, 10, .14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 99px;
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--black);
    border-bottom: 1px solid rgba(201, 165, 92, .18);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.search-wrap {
    flex: 1;
    max-width: 440px;
    position: relative;
}

.search-wrap input {
    width: 100%;
    height: 38px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 99px;
    padding: 0 16px 0 40px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--white);
    outline: none;
    transition: border .2s, background .2s;
}

.search-wrap input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.search-wrap input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, .1);
}

.search-wrap svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .35);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.btn-wpp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: var(--white);
    border-radius: 99px;
    padding: 0 14px;
    height: 36px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s;
    white-space: nowrap;
}

.btn-wpp:hover {
    opacity: .85;
}

.btn-wpp svg {
    width: 15px;
    height: 15px;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background .2s;
}

.cart-btn:hover {
    background: rgba(255, 255, 255, .08);
}

.cart-btn svg {
    width: 22px;
    height: 22px;
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--gold);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

/* ══════════════════════════════════
   HERO / BANNER
══════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--black);
    height: clamp(260px, 45vw, 520px);
}

.hero-slides {
    display: flex;
    height: 100%;
    transition: transform .7s cubic-bezier(.77, 0, .18, 1);
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px clamp(24px, 5vw, 80px);
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 10, 10, .85) 40%, transparent 100%);
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.hero-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 380px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
    padding: 12px 24px;
    border-radius: 99px;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.hero-cta:hover {
    background: var(--gold-lt);
    transform: translateY(-1px);
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: all .3s;
    border: none;
}

.hero-dot.active {
    width: 22px;
    background: var(--gold);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    backdrop-filter: blur(6px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, .2);
}

.hero-arrow.prev {
    left: 16px;
}

.hero-arrow.next {
    right: 16px;
}

.hero-arrow svg {
    width: 18px;
    height: 18px;
}

/* ══════════════════════════════════
   SECTIONS
══════════════════════════════════ */
.section {
    padding: 56px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.section-header.center {
    justify-content: center;
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.1;
}

.section-title span {
    color: var(--gold);
}

/* ══════════════════════════════════
   CATEGORIAS
══════════════════════════════════ */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.cat-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--black);
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 8px;
    border: 1px solid rgba(201, 165, 92, .12);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 165, 92, 0) 50%, rgba(201, 165, 92, .06) 100%);
    pointer-events: none;
    transition: opacity .3s;
    opacity: 0;
}

.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 165, 92, .4);
}

.cat-card:hover::after {
    opacity: 1;
}

.cat-card:hover .cat-icon {
    background: rgba(201, 165, 92, .2);
}

.cat-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 165, 92, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.cat-icon svg {
    width: 18px;
    height: 18px;
}

.cat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
}

/* ══════════════════════════════════
   PRODUCT GRID
══════════════════════════════════ */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.products-grid .product-card {
    width: calc(50% - 7px);
    max-width: 280px;
}

@media(min-width:600px) {
    .products-grid .product-card {
        width: calc(33.333% - 10px);
    }
}

@media(min-width:900px) {
    .products-grid .product-card {
        width: calc(25% - 11px);
    }
}

@media(min-width:1200px) {
    .products-grid .product-card {
        width: calc(20% - 12px);
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 165, 92, .3);
}

.product-img-wrap {
    position: relative;
    background: #fafaf8;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: transform .4s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.badge-destaque {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 99px;
}

.badge-esgotado {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(10, 10, 10, .7);
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 99px;
}

.btn-fav {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(4px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 5;
    padding: 0;
}

.btn-fav svg {
    width: 14px;
    height: 14px;
    color: var(--gray);
    transition: color .2s;
}

.btn-fav:hover {
    background: var(--white);
    transform: scale(1.1);
}

.btn-fav.active svg {
    color: #ef4444;
    fill: #ef4444;
}

.badge-esgotado ~ .btn-fav,
.product-card:has(.badge-esgotado) .btn-fav {
    left: auto;
    right: 10px;
}

.product-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.product-name {
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}

.product-price.consulta {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
}

.product-card-footer {
    padding: 0 12px 12px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn-detail {
    flex: 1;
    height: 32px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    transition: background .2s;
}

.btn-detail:hover {
    background: #222;
}

.btn-wpp-card {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity .2s;
}

.btn-wpp-card:hover {
    opacity: .85;
}

.btn-wpp-card svg {
    width: 16px;
    height: 16px;
}

.btn-add-cart-card {
    flex: 1;
    height: 32px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background .2s;
}

.btn-add-cart-card:hover {
    background: var(--gold-lt);
}

.btn-add-cart-card svg {
    width: 12px;
    height: 12px;
}

/* ══════════════════════════════════
   CATEGORY FILTER
══════════════════════════════════ */
.cats-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cat-filter-btn {
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--gray);
}

.cat-filter-btn:hover {
    border-color: var(--gold);
    color: var(--black);
}

.cat-filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ══════════════════════════════════
   BREADCRUMB
══════════════════════════════════ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    opacity: .4;
    font-size: 10px;
}

.breadcrumb .current {
    color: var(--black);
    font-weight: 600;
}

/* ══════════════════════════════════
   BACK LINK
══════════════════════════════════ */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color .2s;
}

.back-link:hover {
    color: var(--gold);
}

/* ══════════════════════════════════
   PAGE TITLE
══════════════════════════════════ */
.page-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 8px;
}

.page-title span {
    color: var(--gold);
}

.page-sub {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 32px;
}

/* ══════════════════════════════════
   WHATSAPP BANNER
══════════════════════════════════ */
.wpp-banner {
    background: var(--black);
    border-radius: 20px;
    padding: clamp(32px, 5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}

.wpp-banner::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(201, 165, 92, .2), transparent 70%);
}

.wpp-banner-text {
    position: relative;
    z-index: 1;
}

.wpp-banner-text h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.wpp-banner-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
}

.btn-wpp-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 99px;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform .2s, opacity .2s;
}

.btn-wpp-big:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.btn-wpp-big svg {
    width: 20px;
    height: 20px;
}

/* ══════════════════════════════════
   WHATSAPP FLOATING
══════════════════════════════════ */
.wpp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}

.wpp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
}

.wpp-float svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.wpp-float .pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: pulseWpp 2s infinite;
}

@keyframes pulseWpp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .4); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media(min-width:768px) {
    .wpp-float {
        bottom: 28px;
        right: 28px;
        width: 60px;
        height: 60px;
    }
    .wpp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ══════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════ */
.depoimentos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.depoimento-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 28px 24px;
    width: calc(33.333% - 14px);
    max-width: 380px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border);
}

.depoimento-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.depoimento-texto {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--gray);
    flex: 1;
    font-style: italic;
}

.depoimento-texto::before { content: '\201C'; }
.depoimento-texto::after { content: '\201D'; }

.depoimento-nome {
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
}

@media(max-width:768px) {
    .depoimento-card { width: calc(50% - 10px); min-width: 0; }
}
@media(max-width:480px) {
    .depoimento-card { width: 100%; }
}

/* ══════════════════════════════════
   SEARCH RESULTS
══════════════════════════════════ */
#searchResults {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    max-height: 380px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--border);
    transition: background .15s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--cream);
}

.search-result-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    background: #f5f3ef;
}

.search-result-item .r-name {
    font-size: 13px;
    font-weight: 600;
}

.search-result-item .r-price {
    font-size: 12px;
    color: var(--gray);
}

.search-noresult {
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--gray);
}

/* ══════════════════════════════════
   EMPTY STATE
══════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 64px 20px;
    color: var(--gray);
}

.empty-state svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    opacity: .3;
    display: block;
}

.empty-state p {
    font-size: 14px;
}

/* ══════════════════════════════════
   CATEGORY GROUP
══════════════════════════════════ */
.cat-group-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    color: var(--black);
    text-align: center;
}

.cat-group-title:first-of-type {
    margin-top: 0;
}

/* ══════════════════════════════════
   TOAST / FEEDBACK
══════════════════════════════════ */
.feedback-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--black);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: opacity .3s, transform .3s;
    pointer-events: none;
    z-index: 999;
    white-space: nowrap;
}

.feedback-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════
   MODAL
══════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transform: scale(.95);
    transition: transform .25s;
}

.modal-overlay.show .modal-box {
    transform: scale(1);
}

.modal-box h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-box p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.modal-actions button {
    padding: 10px 24px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    border: none;
}

.modal-btn-cancel {
    background: var(--cream);
    color: var(--gray);
}

.modal-btn-cancel:hover {
    background: var(--cream2);
    color: var(--black);
}

.modal-btn-confirm {
    background: #ef4444;
    color: var(--white);
}

.modal-btn-confirm:hover {
    background: #dc2626;
}

/* ══════════════════════════════════
   FRETE PROGRESS BAR
══════════════════════════════════ */
.frete-bar-wrap {
    margin-bottom: 16px;
}

.frete-bar-text {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 6px;
    line-height: 1.5;
}

.frete-bar-text strong {
    color: #10b981;
    font-weight: 600;
}

.frete-bar-track {
    width: 100%;
    height: 6px;
    background: var(--cream2);
    border-radius: 99px;
    overflow: hidden;
}

.frete-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #10b981);
    border-radius: 99px;
    transition: width .5s ease;
}

.frete-bar-fill.complete {
    background: #10b981;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
    background: var(--black);
    margin-top: 64px;
    border-top: 1px solid rgba(201, 165, 92, .1);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media(min-width:640px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width:900px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .logo-text {
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 16px 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .25);
    max-width: 1280px;
    margin: 0 auto;
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp .5s ease both;
}

.fade-up:nth-child(1) { animation-delay: .05s; }
.fade-up:nth-child(2) { animation-delay: .1s; }
.fade-up:nth-child(3) { animation-delay: .15s; }
.fade-up:nth-child(4) { animation-delay: .2s; }
.fade-up:nth-child(5) { animation-delay: .25s; }
.fade-up:nth-child(6) { animation-delay: .3s; }
.fade-up:nth-child(7) { animation-delay: .35s; }
.fade-up:nth-child(8) { animation-delay: .4s; }

/* ══════════════════════════════════
   MOBILE TWEAKS
══════════════════════════════════ */
@media(max-width:480px) {
    .hero-arrow {
        display: none;
    }

    .wpp-banner {
        padding: 28px 20px;
    }

    .btn-wpp span {
        display: none;
    }

    .search-wrap input {
        font-size: 14px;
    }

    .product-card .btn-wpp-card {
        display: none;
    }
}

/* ══════════════════════════════════
   PROMO BANNER (topo fixo)
══════════════════════════════════ */
.promo-banner {
    background: var(--black);
    border-bottom: 1px solid rgba(201, 165, 92, .15);
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .02em;
}
.promo-banner strong {
    color: var(--gold);
    font-weight: 700;
}
.promo-banner .promo-divider {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .15);
    margin: 0 10px;
    vertical-align: middle;
}
@media(max-width:600px) {
    .promo-banner { font-size: 11px; padding: 6px 12px; }
    .promo-banner .promo-divider { margin: 0 6px; }
    .promo-banner .promo-hide-mobile { display: none; }
}

/* ══════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    z-index: 9999;
    transition: width .1s linear;
    width: 0%;
    pointer-events: none;
}

/* ══════════════════════════════════
   BADGE ESTOQUE BAIXO
══════════════════════════════════ */
.badge-estoque-baixo {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 99px;
    animation: pulseBadge 2s infinite;
    z-index: 3;
}
.badge-estoque-baixo ~ .btn-fav,
.product-card:has(.badge-estoque-baixo) .btn-fav {
    left: auto;
    right: 10px;
}
.badge-mais-vendido {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--gold), #d4a843);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 99px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 3px;
}
.badge-mais-vendido svg { width: 10px; height: 10px; }
.badge-mais-vendido ~ .btn-fav,
.product-card:has(.badge-mais-vendido) .btn-fav {
    left: auto;
    right: 10px;
}
.badge-estoque-baixo.badge-duplo { top: 32px; }
.badge-mais-vendido.badge-duplo { top: 32px; }
@keyframes pulseBadge {
    0%, 100% { opacity: 1; }
    50% { opacity: .7; }
}

/* ══════════════════════════════════
   TOAST DE CONFIRMAÇÃO (carrinho)
══════════════════════════════════ */
.toast-cart {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: var(--black);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: opacity .3s, transform .3s;
    pointer-events: none;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    border: 1px solid rgba(201, 165, 92, .2);
    max-width: 90vw;
}
.toast-cart.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.toast-cart svg { width: 18px; height: 18px; color: #10b981; flex-shrink: 0; }
.toast-cart .toast-text { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.toast-cart .toast-go { background: var(--gold); color: var(--black); padding: 6px 14px; border-radius: 99px; font-size: 11px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background .2s; flex-shrink: 0; }
.toast-cart .toast-go:hover { background: var(--gold-lt); }

/* ══════════════════════════════════
   SEÇÃO COMO FUNCIONA
══════════════════════════════════ */
.como-funciona {
    background: var(--black);
    border-radius: var(--radius);
    padding: 48px 40px;
    margin: 0 20px;
    max-width: 1280px;
    position: relative;
    overflow: hidden;
}
.como-funciona::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.como-funciona-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 36px;
}
.como-funciona-title span { color: var(--gold); }
.como-funciona-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media(max-width:640px) {
    .como-funciona { padding: 32px 20px; margin: 0 12px; }
    .como-funciona-steps { grid-template-columns: 1fr; gap: 20px; }
}
.cf-step {
    text-align: center;
    padding: 20px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    transition: border-color .3s, background .3s;
}
.cf-step:hover { border-color: rgba(201, 165, 92, .2); background: rgba(255,255,255,.05); }
.cf-step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(201, 165, 92, .12);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.cf-step-icon {
    width: 48px; height: 48px;
    color: var(--gold);
    margin: 0 auto 12px;
    opacity: .8;
}
.cf-step-icon svg { width: 100%; height: 100%; }
.cf-step h3 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.cf-step p { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ══════════════════════════════════
   SELOS DE CONFIANÇA
══════════════════════════════════ */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 24px 20px;
    max-width: 1280px;
    margin: 0 auto;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    transition: border-color .2s, box-shadow .2s;
}
.trust-item:hover { border-color: rgba(201, 165, 92, .3); box-shadow: var(--shadow); }
.trust-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.trust-item strong { font-weight: 700; }

/* ══════════════════════════════════
   SEÇÃO MARCAS
══════════════════════════════════ */
.marcas-section {
    padding: 32px 20px;
    max-width: 1280px;
    margin: 0 auto;
}
.marcas-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gray);
    text-align: center;
    margin-bottom: 20px;
}
.marcas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.marca-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: .05em;
    transition: color .2s, border-color .2s, box-shadow .2s;
}
.marca-item:hover { color: var(--black); border-color: rgba(201, 165, 92, .3); box-shadow: var(--shadow); }

/* ══════════════════════════════════
   SEÇÃO FAQ
══════════════════════════════════ */
.faq-section {
    padding: 56px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--white);
    transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(201, 165, 92, .3); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); transition: transform .3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray);
}

/* ══════════════════════════════════
   DEPOIMENTOS COM FOTO
══════════════════════════════════ */
.depoimento-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}
.depoimento-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.depoimento-nome-wrap { display: flex; flex-direction: column; }

/* ══════════════════════════════════
   CONTADOR VISUALIZAÇÕES (produto)
══════════════════════════════════ */
.view-counter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray);
    background: rgba(239, 68, 68, .06);
    border: 1px solid rgba(239, 68, 68, .12);
    border-radius: 99px;
    padding: 4px 12px;
}
.view-counter svg { width: 14px; height: 14px; color: #ef4444; }
.view-counter .dot { width: 6px; height: 6px; border-radius: 50%; background: #ef4444; animation: pulseDot 1.5s infinite; }
@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

/* ══════════════════════════════════
   BOTÃO COMPARTILHAR
══════════════════════════════════ */
.share-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}
.share-label { font-size: 11px; color: var(--gray); }
.share-btn {
    width: 32px; height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    text-decoration: none;
}
.share-btn svg { width: 14px; height: 14px; }
.share-btn:hover { border-color: var(--gold); background: rgba(201, 165, 92, .06); }
.share-btn.wpp-share { color: #25D366; }
.share-btn.copy-share { color: var(--gray); }
.share-btn.copy-share.copied { color: #10b981; border-color: #10b981; }

/* ══════════════════════════════════
   GARANTIA / SATISFAÇÃO
══════════════════════════════════ */
.garantia-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, .06);
    border: 1px solid rgba(16, 185, 129, .15);
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 4px;
}
.garantia-banner svg { width: 24px; height: 24px; flex-shrink: 0; color: #10b981; }
.garantia-banner div { flex: 1; }
.garantia-banner strong { display: block; font-size: 13px; font-weight: 600; color: var(--black); }
.garantia-banner span { font-size: 12px; color: var(--gray); }

/* ══════════════════════════════════
   BUSCA MELHORADA
══════════════════════════════════ */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--border);
    transition: background .15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--cream); }
.search-result-item img {
    width: 48px; height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f3ef;
}
.search-result-item .r-name { font-size: 13px; font-weight: 600; }
.search-result-item .r-price { font-size: 12px; color: var(--gray); margin-top: 2px; }
.search-result-item .r-cat { font-size: 10px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.search-result-actions { margin-left: auto; flex-shrink: 0; }
.search-view-btn {
    font-size: 11px; font-weight: 600; color: var(--gold);
    background: rgba(201, 165, 92, .08);
    padding: 4px 10px; border-radius: 99px;
    white-space: nowrap;
}

/* ══════════════════════════════════
   ANIMAÇÃO SCROLL (IntersectionObserver)
══════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
