

/* ═══ catalogo.html → extracted styles ═══ */
:root {
            --bg: #050505;
            --text: #fff;
            --cyan: #00e5ff;
            --purple: #9d00ff;
            --glass: rgba(5, 5, 5, 0.85);
            --border: rgba(255,255,255,0.07);
        }

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

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            padding-top: 72px;
        }

        /* ── CUSTOMER HEADER ───────────────────────────── */
        .cust-header {
            position: fixed;
            top: 0; left: 0; right: 0;
            height: 72px;
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 32px;
            z-index: 9000;
        }

        .cust-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            line-height: 1;
        }
        .cust-logo img {
            width: 38px; height: 38px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .cust-logo-text {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.4rem;
            letter-spacing: 3px;
            color: var(--text);
        }
        .cust-logo-text span { color: var(--cyan); }

        .cust-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Search bar */
        .search-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }
        .search-input {
            width: 0;
            padding: 0;
            background: transparent;
            border: 1px solid transparent;
            border-radius: 50px;
            color: #fff;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            outline: none;
            transition: width 0.35s cubic-bezier(0.4,0,0.2,1),
                        padding 0.35s, border-color 0.35s;
            overflow: hidden;
        }
        .search-input.open {
            width: 200px;
            padding: 8px 16px 8px 38px;
            border-color: var(--border);
            background: rgba(255,255,255,0.05);
        }
        .search-input::placeholder { color: #777; }
        .search-btn {
            position: absolute;
            left: 10px;
            background: none;
            border: none;
            color: #888;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 0;
            transition: color 0.2s;
            z-index: 1;
        }
        .search-btn:hover, .search-btn.active { color: var(--cyan); }
        .search-btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; border-radius: 4px; }

        /* Icon buttons */
        .icon-btn {
            width: 40px; height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            color: #bbb;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            flex-shrink: 0;
        }
        .icon-btn:hover {
            border-color: var(--cyan);
            color: var(--cyan);
            box-shadow: 0 0 12px rgba(0,229,255,0.2);
        }
        .icon-btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
        .icon-btn svg { width: 17px; height: 17px; }

        /* Layout toggle pill */
        .layout-toggle {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 4px;
            gap: 2px;
        }
        .lt-btn {
            width: 32px; height: 32px;
            border-radius: 50px;
            border: none;
            background: transparent;
            color: #888;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
        }
        .lt-btn.active {
            background: rgba(0,229,255,0.15);
            color: var(--cyan);
        }
        .lt-btn:hover:not(.active) { color: #ccc; }
        .lt-btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 1px; }
        .lt-btn svg { width: 15px; height: 15px; }

        .hdr-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }

        /* ── SEARCH RESULTS ────────────────────────────── */
        .search-results {
            position: fixed;
            top: 72px; left: 0; right: 0;
            background: rgba(8,8,8,0.97);
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(20px);
            padding: 20px 32px;
            display: none;
            z-index: 8999;
            max-height: 400px;
            overflow-y: auto;
        }
        .search-results.visible { display: block; }
        .sr-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #666;
            margin-bottom: 16px;
        }
        .sr-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 12px;
        }
        .sr-item {
            display: flex; align-items: center; gap: 12px;
            padding: 10px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
            border: none;
            background: transparent;
            color: inherit;
            font-family: inherit;
            text-align: left;
            width: 100%;
        }
        .sr-item:hover, .sr-item:focus-visible {
            background: rgba(255,255,255,0.05);
            outline: none;
        }
        .sr-item img {
            width: 44px; height: 44px;
            object-fit: cover; border-radius: 6px;
            border: 1px solid #222;
            flex-shrink: 0;
        }
        .sr-item-info { flex: 1; min-width: 0; }
        .sr-item-name {
            font-size: 0.8rem;
            font-weight: 500;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
            color: var(--text);
        }
        .sr-item-price { font-size: 0.75rem; color: var(--cyan); margin-top: 2px; }
        .sr-empty { color: #666; font-size: 0.9rem; padding: 20px 0; }

        /* ── CATALOG GRID ──────────────────────────────── */
        .vitrine-wrap { padding: 32px; }

        .grid-1 { display: flex; flex-direction: column; gap: 20px; max-width: 560px; margin: auto; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

        .card-produto {
            background: #0a0a0a;
            border: 1px solid #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
            position: relative;
            text-align: left;
            color: inherit;
            font-family: inherit;
            width: 100%;
            padding: 0;
        }
        .card-produto:hover {
            border-color: rgba(0,229,255,0.4);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,229,255,0.08);
        }
        .card-produto:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 4px;
        }
        .card-produto img {
            width: 100%; height: 320px;
            object-fit: cover;
            display: block;
            transition: opacity 0.3s;
        }
        .card-produto:hover img { opacity: 0.75; }

        .buy-overlay {
            position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center;
            background: rgba(0,0,0,0.5);
            opacity: 0; transition: opacity 0.3s;
            pointer-events: none;
        }
        .card-produto:hover .buy-overlay { opacity: 1; }
        .buy-pill {
            background: var(--cyan);
            color: #000;
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 22px;
            border-radius: 50px;
            transform: translateY(10px);
            transition: transform 0.3s;
        }
        .card-produto:hover .buy-pill { transform: translateY(0); }

        .card-info { padding: 16px 20px; }
        .card-info h3 {
            font-size: 0.85rem;
            font-weight: 500;
            color: #ccc;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        .card-info .price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.3rem;
            color: var(--cyan);
            letter-spacing: 1px;
        }

        /* ── STATE MESSAGES ────────────────────────────── */
        .state-msg {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 40vh;
            color: #777;
            gap: 12px;
            grid-column: 1 / -1;
        }
        .state-msg .icon { font-size: 2.5rem; }
        .state-msg p     { font-size: 0.9rem; }

        /* ── MOBILE ────────────────────────────────────── */
        @media (max-width: 600px) {
            .cust-header     { padding: 0 16px; }
            .vitrine-wrap    { padding: 16px; }
            .grid-2, .grid-3 { grid-template-columns: 1fr 1fr; gap: 12px; }
            .grid-1          { gap: 12px; }
            .card-produto img { height: 200px; }
            .search-input.open { width: 140px; }
            .sr-grid         { grid-template-columns: 1fr 1fr; }
            .hdr-divider     { display: none; }
            .cust-logo-text  { display: none; }
        }


        /* ── SKELETON LOADING ──────────────────────────── */
        @keyframes shimmer {
            0%   { background-position: -600px 0; }
            100% { background-position:  600px 0; }
        }
        .skeleton-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
        }
        .skeleton-card {
            background: #0a0a0a;
            border: 1px solid #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
        }
        .skeleton-img {
            width: 100%; height: 320px;
            background: linear-gradient(90deg, #0f0f0f 0%, #1a1a1a 40%, #0f0f0f 80%);
            background-size: 600px 100%;
            animation: shimmer 1.4s linear infinite;
        }
        .skeleton-text {
            height: 14px; border-radius: 4px; margin: 16px 20px 8px;
            background: linear-gradient(90deg, #0f0f0f 0%, #1a1a1a 40%, #0f0f0f 80%);
            background-size: 600px 100%;
            animation: shimmer 1.4s linear infinite;
        }
        .skeleton-text.short { width: 40%; height: 18px; margin-bottom: 16px; }

        /* ── CARD ENTRANCE ANIMATION ───────────────────── */
        @keyframes cardIn {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .card-produto {
            animation: cardIn 0.4s ease both;
            animation-delay: var(--card-delay, 0ms);
        }
        @media (prefers-reduced-motion: reduce) {
            .skeleton-img, .skeleton-text { animation: none; }
            .card-produto { animation: none; }
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

/* CSP-safe utility */
.vz-ig-hint { font-size: 0.8rem; color: #777; margin-top: 4px; }

/* ── ZIP "em breve" button ──────────────────────────────── */
.zip-soon-wrap        { position: relative; display: flex; align-items: center; }
.zip-soon-btn         { opacity: 0.35; cursor: not-allowed; }
.zip-soon-btn:hover   { opacity: 0.5; transform: none !important; }
.zip-soon-badge       {
    position: absolute;
    top: -6px; right: -4px;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cyan);
    background: var(--bg);
    border: 1px solid var(--cyan);
    border-radius: 4px;
    padding: 1px 4px;
    pointer-events: none;
    white-space: nowrap;
}

/* ── Color badge on product card ────────────────────────── */
.card-meta            { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.cor-badge            {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #888;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 1px 6px;
    white-space: nowrap;
}


/* ─────────────────────────────────────────────────────────
   PRODUCT DETAIL MODAL
   ───────────────────────────────────────────────────────── */
.product-modal {
    position: fixed; inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.product-modal.open { display: flex; animation: modal-fade-in 0.25s ease both; }

.product-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.product-modal-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #0a0a0a;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    max-width: 1100px;
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow: hidden;
    animation: modal-card-rise 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(157, 0, 255, 0.15),
                0 0 64px rgba(0, 229, 255, 0.04);
}

.product-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid #2a2a2a;
    color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}
.product-modal-close:hover {
    background: var(--cyan); color: #000;
    border-color: var(--cyan);
    transform: scale(1.05);
}
.product-modal-close svg { width: 18px; height: 18px; }

.product-modal-image {
    background: linear-gradient(135deg, #060606 0%, #0e0e0e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 0;
}
.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 70vh;
    animation: modal-img-in 0.45s 0.1s ease both;
}

.product-modal-info {
    padding: 40px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.product-modal-eyebrow {
    font-size: 0.65rem;
    color: var(--purple);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}
.product-modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0 0 8px;
}
.product-modal-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.product-modal-cor {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 4px 10px;
}
.product-modal-cor:empty { display: none; }
.product-modal-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--cyan);
    letter-spacing: 1.5px;
    line-height: 1;
}
.product-modal-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin: 4px 0 18px;
}
.product-modal-size-field { margin-bottom: 16px; text-align: left; }
.product-modal-size-field label {
    display: block; font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase;
    color: #888; margin-bottom: 6px;
}
.product-modal-size-field select {
    width: 100%; background: #0a0a0a; border: 1px solid #222; border-radius: 8px; color: #ddd;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; padding: 11px 36px 11px 12px; min-height: 44px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
}
.product-modal-size-field select:focus {
    outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,229,255,0.12);
}
.product-modal-size-error { font-size: 0.78rem; color: #ff4d4d; min-height: 16px; margin-top: 6px; }
.product-modal-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 16px 22px;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
    width: 100%;
}
.product-modal-buy:hover {
    background: #2eea75;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.3);
}
.product-modal-buy:active { transform: translateY(0); }
.product-modal-buy svg { width: 20px; height: 20px; }
.product-modal-foot {
    font-size: 0.65rem;
    color: #777;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

@keyframes modal-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes modal-card-rise {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes modal-img-in {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Modal mobile ─────────────────────────────────────── */
@media (max-width: 760px) {
    .product-modal { padding: 0; }
    .product-modal-card {
        grid-template-columns: 1fr;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        height: 100vh;
    }
    .product-modal-image {
        min-height: 48vh;
        max-height: 55vh;
    }
    .product-modal-info {
        padding: 24px 22px 28px;
    }
    .product-modal-title { font-size: 1.6rem; letter-spacing: 1.5px; }
    .product-modal-price { font-size: 1.7rem; }
    /* a11y: 44px minimum touch target */
    .product-modal-close { width: 44px; height: 44px; top: 12px; right: 12px; }
    .product-modal-close svg { width: 20px; height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .product-modal-card,
    .product-modal-image img { animation: none; }
}

/* ─────────────────────────────────────────────────────────
   CARD POLISH — update buy pill text/feel
   ───────────────────────────────────────────────────────── */
.buy-pill {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
}
.card-produto:hover {
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 16px 40px rgba(0, 229, 255, 0.1),
                0 0 0 1px rgba(0, 229, 255, 0.08);
}
.card-produto::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px transparent;
    transition: box-shadow 0.3s;
}
.card-produto:hover::after {
    box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.12);
}


/* ─────────────────────────────────────────────────────────
   FAQ / INFO MODAL — same DNA as product modal, smaller
   ───────────────────────────────────────────────────────── */
.faq-trigger { color: #ccc; }
.faq-trigger:hover { color: var(--cyan); }

.faq-modal {
    position: fixed; inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.faq-modal.open { display: flex; animation: modal-fade-in 0.25s ease both; }

.faq-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.faq-modal-card {
    position: relative;
    z-index: 1;
    background: #0a0a0a;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    max-width: 560px;
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 36px 32px 28px;
    animation: modal-card-rise 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
    box-shadow: 0 32px 64px rgba(0,0,0,0.6),
                0 0 0 1px rgba(157,0,255,0.15),
                0 0 64px rgba(0,229,255,0.04);
}

.faq-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: rgba(20,20,20,0.85);
    border: 1px solid #2a2a2a;
    color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.faq-modal-close:hover {
    background: var(--cyan); color: #000; border-color: var(--cyan);
    transform: scale(1.05);
}
.faq-modal-close svg { width: 18px; height: 18px; }

.faq-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--cyan);
    letter-spacing: 3px;
    margin: 0 0 6px;
    text-shadow: 0 0 12px rgba(0,229,255,0.25);
}
.faq-sub {
    font-size: 0.78rem;
    color: #777;
    margin: 0 0 22px;
}

.faq-section { margin-bottom: 18px; }
.faq-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.faq-section-body {
    font-size: 0.88rem;
    color: #c8c8c8;
    line-height: 1.55;
    margin: 0;
}
.faq-section-body strong { color: #fff; font-weight: 600; }

.faq-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}
.faq-price-table td {
    padding: 9px 10px;
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.85rem;
    color: #ccc;
}
.faq-price-table tr:last-child td { border-bottom: none; }
.faq-price-table td:last-child {
    text-align: right;
    color: var(--cyan);
    font-weight: 600;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
}
.faq-section-foot {
    font-size: 0.72rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.faq-credit {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    font-size: 0.6rem;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.faq-credit strong { color: #555; letter-spacing: 1.5px; }

@media (max-width: 600px) {
    .faq-modal { padding: 0; }
    .faq-modal-card {
        max-width: 100%;
        max-height: 100vh;
        min-height: 100vh;
        border-radius: 0;
        border: none;
        padding: 28px 22px 24px;
    }
    .faq-modal-close { width: 44px; height: 44px; }
    .faq-title { font-size: 1.5rem; letter-spacing: 2px; }
}

@media (prefers-reduced-motion: reduce) {
    .faq-modal.open, .faq-modal-card { animation: none; }
}


/* ─────────────────────────────────────────────────────────
   CATALOG OPENING — first visit only, fades into catalog
   ───────────────────────────────────────────────────────── */
.catalog-intro {
    position: fixed; inset: 0;
    z-index: 9999;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.catalog-intro.active  { opacity: 1; pointer-events: all; }
.catalog-intro.leaving { opacity: 0; transition: opacity 0.65s ease; }

/* ── Background layers ──────────────────────────────────── */
.catalog-intro-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: intro-grid-drift 20s linear infinite;
    pointer-events: none;
}
.catalog-intro-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(157,0,255,0.14) 0%, transparent 65%);
    animation: intro-pulse 3.5s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes intro-grid-drift {
    from { background-position: 0 0; }
    to   { background-position: 48px 48px; }
}
@keyframes intro-pulse {
    from { opacity: 0.45; }
    to   { opacity: 1; }
}

/* ── Inner container ────────────────────────────────────── */
.catalog-intro-inner {
    position: relative; z-index: 1;
    padding: 20px; max-width: 560px; width: 100%;
}

/* ── Eyebrow — beat 1 (t=0.1s) ─────────────────────────── */
.catalog-intro-eyebrow {
    font-size: 0.62rem;
    color: var(--purple);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
    animation: intro-fade 0.45s 0.1s both;
}

/* ── Brand — beat 2 (t=0.2s) ───────────────────────────── */
.catalog-intro-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 9vw, 4.4rem);
    color: var(--cyan);
    letter-spacing: 8px;
    margin: 0 0 18px;
    animation: intro-flicker 0.6s 0.2s both;
    text-shadow: 0 0 28px rgba(0,229,255,0.45);
}
@keyframes intro-flicker {
    0%   { opacity: 0; text-shadow: none; letter-spacing: 16px; filter: blur(2px); }
    35%  { opacity: 1; text-shadow: 0 0 40px var(--cyan); filter: blur(0); }
    52%  { opacity: 0.5; }
    72%  { opacity: 1; text-shadow: 0 0 20px rgba(0,229,255,0.5); }
    88%  { opacity: 0.85; }
    100% { opacity: 1; text-shadow: 0 0 24px rgba(0,229,255,0.4); letter-spacing: 8px; }
}

/* ── Separator line — beat 3 (t=0.7s, draws across) ─────── */
.catalog-intro-sep {
    width: 80px;
    height: 1px;
    margin: 0 auto 20px;
    background: linear-gradient(to right,
        transparent 0%, var(--cyan) 40%, var(--purple) 60%, transparent 100%);
    transform: scaleX(0);
    transform-origin: center;
    animation: intro-sep-draw 0.5s 0.72s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}
@keyframes intro-sep-draw {
    0%   { transform: scaleX(0); opacity: 0; }
    20%  { opacity: 1; }
    100% { transform: scaleX(1); opacity: 1; }
}

/* ── Tagline — beat 4 (t=1.0s) ─────────────────────────── */
.catalog-intro-tag {
    font-size: 0.88rem;
    color: #999;
    letter-spacing: 2px;
    margin: 0 0 30px;
    animation: intro-fade 0.5s 1.0s both;
}

/* ── Pillars — staggered beats 5–7 (t=1.2s, 1.4s, 1.6s) ── */
.catalog-intro-pillars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 0 auto 28px;
    flex-wrap: wrap;
}
/* Each child animates individually */
.catalog-intro-pillars > :nth-child(1) { animation: intro-pillar 0.45s 1.2s both; }
.catalog-intro-pillars > :nth-child(2) { animation: intro-pillar 0.3s  1.38s both; }
.catalog-intro-pillars > :nth-child(3) { animation: intro-pillar 0.45s 1.42s both; }
.catalog-intro-pillars > :nth-child(4) { animation: intro-pillar 0.3s  1.62s both; }
.catalog-intro-pillars > :nth-child(5) { animation: intro-pillar 0.45s 1.65s both; }
@keyframes intro-pillar {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.catalog-pillar {
    display: flex; flex-direction: column;
    align-items: center; gap: 2px;
}
.catalog-pillar-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
}
.catalog-pillar-label {
    font-size: 0.55rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.catalog-pillar-sep {
    width: 1px; height: 28px;
    background: linear-gradient(to bottom, transparent, #2a2a2a, transparent);
}

/* ── Loader — beat 8 (t=1.9s) ───────────────────────────── */
.catalog-intro-loader {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    animation: intro-fade 0.5s 1.9s both;
}
.catalog-intro-spinner {
    width: 28px; height: 28px;
    border: 1.5px solid transparent;
    border-top-color: var(--cyan);
    border-bottom-color: var(--purple);
    border-radius: 50%;
    animation: intro-spin 1.4s ease-in-out infinite;
}
@keyframes intro-spin {
    0%   { transform: rotate(0deg);   box-shadow: 0 0 0 rgba(0,229,255,0); }
    50%  { transform: rotate(180deg); box-shadow: 0 0 14px rgba(0,229,255,0.3); }
    100% { transform: rotate(360deg); box-shadow: 0 0 0 rgba(0,229,255,0); }
}

/* ── Hint — beat 9 (t=2.1s) ─────────────────────────────── */
.catalog-intro-hint {
    font-size: 0.6rem;
    color: #777;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: intro-fade 0.5s 2.1s both;
}

/* ── Credit — beat 10 (t=2.3s) ─────────────────────────── */
.catalog-intro-credit {
    font-size: 0.52rem;
    color: #1e1e1e;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    animation: intro-fade 0.5s 2.3s both;
}
.catalog-intro-credit strong { color: #333; font-weight: 600; }

@keyframes intro-fade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .catalog-pillar-sep { display: none; }
    .catalog-intro-pillars { gap: 22px; }
    .catalog-intro-brand { letter-spacing: 5px; }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-intro-grid, .catalog-intro-glow,
    .catalog-intro-spinner, .catalog-intro-brand,
    .catalog-intro-eyebrow, .catalog-intro-tag,
    .catalog-intro-pillars, .catalog-intro-loader,
    .catalog-intro-hint, .catalog-intro-credit,
    .catalog-intro-sep, .catalog-intro-pillars > * { animation: none; }
}


/* ─────────────────────────────────────────────────────────
   POST-WHATSAPP SUCCESS VIEW — inside product modal
   ───────────────────────────────────────────────────────── */
.modal-success-view { display: none; }

/* When state=success, hide normal content + show success */
.product-modal-card[data-state="success"] .product-modal-eyebrow,
.product-modal-card[data-state="success"] .product-modal-title,
.product-modal-card[data-state="success"] .product-modal-meta,
.product-modal-card[data-state="success"] .product-modal-desc,
.product-modal-card[data-state="success"] .product-modal-size-field,
.product-modal-card[data-state="success"] .product-modal-buy,
.product-modal-card[data-state="success"] .product-modal-buy-pix,
.product-modal-card[data-state="success"] .product-modal-foot { display: none; }

/* [VZ] PIX state — same hide list as success, plus shows .modal-pix-view */
.product-modal-card[data-state="pix"] .product-modal-eyebrow,
.product-modal-card[data-state="pix"] .product-modal-title,
.product-modal-card[data-state="pix"] .product-modal-meta,
.product-modal-card[data-state="pix"] .product-modal-desc,
.product-modal-card[data-state="pix"] .product-modal-size-field,
.product-modal-card[data-state="pix"] .product-modal-buy,
.product-modal-card[data-state="pix"] .product-modal-buy-pix,
.product-modal-card[data-state="pix"] .product-modal-foot { display: none; }

.modal-pix-view { display: none; }
.product-modal-card[data-state="pix"] .modal-pix-view {
    display: flex; flex-direction: column; gap: 14px; padding-top: 8px;
    animation: success-rise 0.4s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Secondary PIX trigger button — sits below the WhatsApp button when enabled.
   Typography/radius/padding intentionally match .product-modal-buy exactly
   so the two read as a matched pair; only the fill differs (outlined here)
   to signal this is the alternative action, not the primary one. */
.product-modal-buy-pix {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; margin-top: 10px;
    background: transparent; border: 1.5px solid var(--cyan); color: var(--cyan);
    border-radius: 8px; padding: 16px 22px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    cursor: pointer; transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
}
.product-modal-buy-pix:hover {
    background: rgba(0,229,255,0.1);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0,229,255,0.2);
}
.product-modal-buy-pix:active { transform: translateY(0); }

/* PIX form */
.pix-form-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 1px; color: #fff; text-align: center; }
.pix-field { display: flex; flex-direction: column; gap: 5px; text-align: left; }
.pix-field label { font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase; color: #888; }
.pix-field input, .pix-field select {
    background: #0a0a0a; border: 1px solid #222; border-radius: 8px; color: #ddd;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; padding: 11px 12px; min-height: 44px;
}
.pix-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
    padding-right: 36px;
}
.pix-field input:focus, .pix-field select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,229,255,0.12); }
.pix-form-error { font-size: 0.78rem; color: #ff4d4d; min-height: 16px; text-align: center; }
.pix-form-submit {
    background: var(--cyan); color: #000; border: none; border-radius: 8px; padding: 16px 22px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    cursor: pointer; transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
}
.pix-form-submit:hover:not(:disabled) {
    background: #33ecff; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(0,229,255,0.3);
}
.pix-form-submit:active:not(:disabled) { transform: translateY(0); }
.pix-form-submit:disabled { opacity: 0.5; cursor: wait; }
.pix-form-back { background: none; border: none; color: #777; font-size: 0.8rem; cursor: pointer; padding: 6px; text-align: center; }
.pix-form-back:hover { color: #aaa; }

/* PIX QR result */
.pix-qr-wrap {
    display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
    animation: success-rise 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.pix-qr-title { font-size: 0.85rem; color: #aaa; }
.pix-qr-img { width: 200px; height: 200px; border-radius: 10px; background: #fff; padding: 8px; }
.pix-copy-btn {
    background: rgba(0,229,255,0.1); border: 1px solid var(--cyan); color: var(--cyan);
    border-radius: 8px; padding: 11px 20px; font-size: 0.85rem; font-weight: 600; cursor: pointer;
    min-height: 44px; transition: all 0.2s;
}
.pix-copy-btn:hover { background: rgba(0,229,255,0.18); }
.pix-copy-btn.copied { background: rgba(37,211,102,0.15); border-color: #25d366; color: #25d366; }
.pix-waiting { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: #888; }
.pix-waiting-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
    animation: pix-pulse 1.4s ease-in-out infinite;
}
@keyframes pix-pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.pix-error { font-size: 0.78rem; color: #ff4d4d; min-height: 16px; }
@media (prefers-reduced-motion: reduce) { .pix-waiting-dot { animation: none; opacity: 1; } }

.product-modal-card[data-state="success"] .modal-success-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-top: 8px;
    animation: success-rise 0.4s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal-success-icon {
    width: 64px; height: 64px;
    color: #25d366;
    animation: success-pop 0.5s 0.15s cubic-bezier(0.18, 1.2, 0.4, 1.1) both;
}
.modal-success-icon svg { width: 100%; height: 100%; }
.modal-success-icon svg circle {
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: success-circle 0.6s 0.1s ease forwards;
}
.modal-success-icon svg path {
    stroke-dasharray: 44;
    stroke-dashoffset: 44;
    animation: success-check 0.4s 0.55s ease forwards;
}
@keyframes success-circle { to { stroke-dashoffset: 0; } }
@keyframes success-check  { to { stroke-dashoffset: 0; } }
@keyframes success-pop {
    0%   { transform: scale(0.4); opacity: 0; }
    60%  { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes success-rise {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-success-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 2px;
    margin: 4px 0 0;
}
.modal-success-sub {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin: 0 0 8px;
}

/* Timeline */
.order-timeline {
    list-style: none;
    padding: 0;
    margin: 8px 0;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}
.order-timeline::before {
    content: '';
    position: absolute;
    left: 9px; top: 8px; bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, #25d366 0%, #25d366 35%, #2a2a2a 35%, #2a2a2a 100%);
}
.order-step {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.order-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    transition: all 0.3s;
}
.order-step.done .order-dot {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.4);
}
.order-step.current .order-dot {
    background: #0a0a0a;
    border-color: var(--cyan);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
    animation: order-pulse 1.6s ease-in-out infinite;
}
@keyframes order-pulse {
    0%, 100% { box-shadow: 0 0 12px rgba(0, 229, 255, 0.4); }
    50%      { box-shadow: 0 0 20px rgba(0, 229, 255, 0.7); }
}
.order-label {
    font-size: 0.82rem;
    color: #888;
    text-align: left;
    line-height: 1.35;
}
.order-step.done .order-label    { color: #ccc; }
.order-step.current .order-label { color: #fff; font-weight: 500; }

.modal-success-continue {
    margin-top: 6px;
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}
.modal-success-continue:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 6px 18px rgba(0, 229, 255, 0.25);
    transform: translateY(-1px);
}

/* ENVIADO badge on product image when in success state */
.product-modal-card[data-state="success"] .product-modal-image::after {
    content: 'ENVIADO ✓';
    position: absolute;
    top: 16px; left: 16px;
    background: #25d366;
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 4px;
    animation: enviado-pop 0.4s 0.4s cubic-bezier(0.18, 1.2, 0.4, 1.1) both;
}
.product-modal-image { position: relative; }
@keyframes enviado-pop {
    0%   { transform: scale(0.5) rotate(-8deg); opacity: 0; }
    60%  { transform: scale(1.12) rotate(2deg); }
    100% { transform: scale(1) rotate(-3deg); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .modal-success-view,
    .modal-success-icon,
    .modal-success-icon svg circle,
    .modal-success-icon svg path,
    .order-step.current .order-dot,
    .product-modal-card[data-state="success"] .product-modal-image::after {
        animation: none;
    }
    .modal-success-icon svg circle { stroke-dashoffset: 0; }
    .modal-success-icon svg path   { stroke-dashoffset: 0; }
}


/* ── Success view: mobile polish ────────────────────────── */
@media (max-width: 600px) {
    .product-modal-card[data-state="success"] .modal-success-view {
        gap: 14px;
    }
    .modal-success-icon { width: 54px; height: 54px; }
    .modal-success-title { font-size: 1.5rem; }
    .modal-success-sub   { font-size: 0.82rem; padding: 0 8px; }
    .order-timeline      { max-width: 100%; gap: 12px; }
    .order-label         { font-size: 0.78rem; }
    .product-modal-card[data-state="success"] .product-modal-image::after {
        font-size: 0.6rem;
        padding: 5px 10px;
        top: 12px; left: 12px;
    }
}

/* ─────────────────────────────────────────────────────────
   MOBILE TOUCH-TARGET COMPLIANCE
   ───────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    /* WCAG / Apple HIG: 44x44 minimum touch target */
    .icon-btn {
        width: 44px;
        height: 44px;
    }
    .icon-btn svg { width: 18px; height: 18px; }

    /* Layout toggle: hide the redundant 3-col button (3 = 2 at mobile width).
       Bump remaining buttons to a more tappable size. */
    /* All 3 buttons stay visible — hiding any breaks the active-state indicator */
    .lt-btn { width: 40px; height: 40px; }
    .lt-btn svg { width: 16px; height: 16px; }
    .layout-toggle { padding: 3px; }

    /* Card info — tighter on narrow screens, meta wraps gracefully */
    .card-info { padding: 12px 14px; }
    .card-info h3 { font-size: 0.78rem; letter-spacing: 0.5px; }
    .card-info .price { font-size: 1.15rem; }
    .card-meta { flex-wrap: wrap; gap: 6px; }
    .cor-badge { font-size: 0.62rem; padding: 1px 5px; }

    /* Tighter header gap for many actions in narrow space */
    .cust-actions { gap: 6px; }
}

/* ─────────────────────────────────────────────────────────
   VERY SMALL SCREENS (320–400px — older iPhone SE, small Android)
   ───────────────────────────────────────────────────────── */
@media (max-width: 400px) {
    .cust-header { padding: 0 12px; }
    .vitrine-wrap { padding: 12px; }
    .grid-2, .grid-3 { gap: 10px; }
    .cust-logo img { width: 34px; height: 34px; }
    .cust-actions { gap: 4px; }
    .layout-toggle { padding: 2px; }
    .lt-btn { width: 36px; height: 36px; }
    /* Hide the ZIP teaser badge to free up space */
    .zip-soon-badge { font-size: 0.45rem; padding: 1px 3px; top: -4px; right: -3px; }
}

/* ─────────────────────────────────────────────────────────
   CATALOG FILTER BAR
   ───────────────────────────────────────────────────────── */
.filter-bar {
    padding: 0 20px 0;
    position: sticky;
    top: 64px;
    z-index: 90;
    background: var(--bg);
    padding-bottom: 2px;
}
.filter-bar-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.filter-group {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.filter-chip {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    border-radius: 20px;
    padding: 5px 13px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.filter-chip:hover { border-color: var(--cyan); color: var(--cyan); }
.filter-chip.active {
    background: rgba(0,229,255,0.12);
    border-color: var(--cyan);
    color: var(--cyan);
}
.filter-clear {
    background: transparent;
    border: none;
    color: #777;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    cursor: pointer;
    padding: 5px 8px;
    transition: color 0.2s;
}
.filter-clear:hover { color: var(--danger); }
.filter-count {
    font-size: 0.7rem;
    color: #777;
    margin-left: auto;
    white-space: nowrap;
}
.state-clear-filters {
    margin-top: 12px;
    background: transparent;
    border: 1px solid #333;
    color: var(--cyan);
    padding: 8px 18px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}
.state-clear-filters:hover { border-color: var(--cyan); background: rgba(0,229,255,0.08); }

/* Genero badge — same style as cor-badge but distinct */
.genero-badge {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--purple);
    border: 1px solid rgba(157,0,255,0.3);
    border-radius: 4px;
    padding: 1px 5px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .filter-bar { padding: 0 14px; top: 56px; }
    .filter-count { display: none; }
}

/* ── Modal tipo + genero badges ──────────────────────────── */
.product-modal-tipo,
.product-modal-genero {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 3px 8px;
    white-space: nowrap;
}
.product-modal-tipo   { color: #ccc;          border: 1px solid #333; }
.product-modal-genero { color: var(--purple);  border: 1px solid rgba(157,0,255,0.35); }
.product-modal-tipo:empty,
.product-modal-genero:empty { display: none; }

/* ── Catalog footer ─────────────────────────────────────── */
.cust-footer {
    text-align: center;
    padding: 28px 20px;
    margin-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cust-footer-text { font-size: 0.65rem; color: #444; letter-spacing: 0.5px; }
.cust-footer-link { color: #777; text-decoration: none; transition: color 0.2s; }
.cust-footer-link:hover { color: var(--cyan); }

/* ── Featured "Novidade" badge ──────────────────────────── */
.destaque-badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 4px;
}

/* ── Modal gallery thumbnails ───────────────────────────── */
.modal-gallery {
    display: flex;
    gap: 6px;
    padding: 8px 12px 4px;
    overflow-x: auto;
    background: rgba(0,0,0,0.3);
}
.modal-gallery:empty { display: none; }
.gallery-thumb {
    width: 52px; height: 52px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #333;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.gallery-thumb:hover { opacity: 1; border-color: var(--cyan); }
