/* === ACHADOS NA WEB — Design System v3 === */

:root {
    /* Brand */
    --aw-yellow: #fff159;
    --aw-yellow-mid: #ffd600;
    --aw-blue: #2563eb;
    --aw-blue-dark: #1d4ed8;
    --aw-blue-faint: rgba(37, 99, 235, .08);
    --aw-orange: #f05523;
    --aw-orange-faint: rgba(240, 85, 35, .08);
    --aw-amazon: #f90;
    --aw-amazon-faint: rgba(255, 153, 0, .10);
    --aw-green: #16a34a;

    /* Surface */
    --aw-ink: #0b1929;
    --aw-text: #1c2b3a;
    --aw-muted: #6b7d97;
    --aw-muted2: #9aacc0;
    --aw-border: rgba(11, 25, 41, .09);
    --aw-border-strong: rgba(11, 25, 41, .18);
    --aw-bg: #edf2f9;
    --aw-card: #ffffff;

    /* Shape */
    --aw-radius-sm: 8px;
    --aw-radius: 12px;
    --aw-radius-lg: 18px;
    --aw-radius-xl: 24px;

    /* Shadow */
    --aw-shadow-xs: 0 1px 3px rgba(11, 25, 41, .06);
    --aw-shadow-sm: 0 2px 8px rgba(11, 25, 41, .07);
    --aw-shadow: 0 4px 20px rgba(11, 25, 41, .08), 0 1px 4px rgba(11, 25, 41, .05);
    --aw-shadow-lg: 0 12px 40px rgba(11, 25, 41, .13);
    --aw-shadow-xl: 0 20px 60px rgba(11, 25, 41, .18);
}

/* === Custom scrollbar === */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(11,25,41,.16); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(11,25,41,.32); }
* { scrollbar-width: thin; scrollbar-color: rgba(11,25,41,.16) transparent; }

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    overflow-x: hidden;
    min-width: 320px;
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--aw-text);
    background: var(--aw-bg);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
.fw-black { font-weight: 900 !important; }

/* === Cron progress bar (top of page) === */
.aw-cron-track {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(11, 25, 41, .08);
    z-index: 2000;
}
.aw-cron-bar {
    height: 100%;
    width: 0%;
    background: var(--aw-yellow-mid);
    transition: width 1s linear, background .4s ease;
    border-radius: 0 2px 2px 0;
}

/* === New-offers refresh bar — premium toast === */
.aw-refresh-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 1999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0b1929 0%, #162236 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    border-radius: 18px;
    padding: 14px 12px 14px 18px;
    max-width: min(440px, calc(100vw - 32px));
    width: max-content;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .40),
        0 4px 16px rgba(0, 0, 0, .25),
        inset 0 1px 0 rgba(255, 255, 255, .09);
    opacity: 0;
    transition: transform .42s cubic-bezier(.34, 1.56, .64, 1), opacity .3s ease;
}
.aw-refresh-bar.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.aw-refresh-bar i {
    font-size: 22px;
    color: var(--aw-yellow);
    flex-shrink: 0;
    animation: aw-star-spin 3s ease-in-out infinite;
}
.aw-refresh-bar [data-refresh-msg] {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex: 1;
    white-space: nowrap;
    min-width: 0;
}
.aw-refresh-bar [data-refresh-reload] {
    height: 40px;
    padding: 0 18px;
    background: var(--aw-yellow);
    color: var(--aw-ink);
    border: none;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity .15s, transform .15s;
}
.aw-refresh-bar [data-refresh-reload]:hover {
    opacity: .9;
    transform: scale(1.03);
}
.aw-refresh-bar [data-refresh-dismiss] {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .55);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.aw-refresh-bar [data-refresh-dismiss]:hover {
    background: rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .9);
}
@keyframes aw-star-spin {
    0%, 100% { transform: scale(1) rotate(0deg); }
    30% { transform: scale(1.18) rotate(-8deg); }
    60% { transform: scale(1.1) rotate(6deg); }
}

/* === Header === */
.aw-header {
    position: sticky;
    top: 3px;
    z-index: 1040;
    background: var(--aw-card);
    box-shadow: 0 1px 0 var(--aw-border), 0 4px 16px rgba(11, 25, 41, .06);
}

/* Top bar */
.aw-topbar {
    height: 34px;
    display: flex;
    align-items: center;
    background: var(--aw-ink);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .01em;
}
.aw-topbar a {
    color: var(--aw-yellow);
    font-weight: 700;
    transition: opacity .15s;
    white-space: nowrap;
}
.aw-topbar a:hover { opacity: .8; }
.aw-topbar .container-xxl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.aw-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.aw-countdown-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .55);
    font-size: 11.5px;
    font-weight: 500;
}
.aw-countdown-chip i { font-size: 12px; }
.aw-countdown-chip [data-countdown] {
    font-weight: 700;
    color: var(--aw-yellow);
    font-variant-numeric: tabular-nums;
    min-width: 36px;
}
.aw-countdown-mobile {
    background: var(--aw-ink);
    color: rgba(255, 255, 255, .72);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    gap: 6px;
    flex-shrink: 0;
}
.aw-countdown-mobile [data-countdown] {
    color: var(--aw-yellow);
    font-variant-numeric: tabular-nums;
}

/* Countdown chip inside live rail (light bg) — needs high-contrast colors */
.aw-live-actions .aw-countdown-chip {
    background: var(--aw-blue);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    gap: 6px;
}
.aw-live-actions .aw-countdown-chip i { color: rgba(255,255,255,.8); font-size: 13px; }
.aw-live-actions .aw-countdown-chip [data-countdown] {
    color: #fff;
    font-variant-numeric: tabular-nums;
    min-width: auto;
}

/* Navbar */
.aw-navbar {
    background: var(--aw-card);
    padding: 0;
}

/* Brand */
.aw-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--aw-ink);
    flex-shrink: 0;
}
.aw-brand:hover, .aw-brand:focus { color: var(--aw-ink); }
.aw-brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--aw-yellow);
    display: grid;
    place-items: center;
    box-shadow: var(--aw-shadow-sm);
    flex-shrink: 0;
    overflow: hidden;
}
.aw-brand-icon img { width: 36px; height: 36px; object-fit: contain; }
.aw-brand-text { display: grid; line-height: .95; }
.aw-brand-text strong { font-size: 22px; font-weight: 900; color: var(--aw-ink); }
.aw-brand-text em {
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    color: var(--aw-muted);
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Search */
.aw-search {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    border: 1.5px solid var(--aw-border-strong);
    border-radius: 25px;
    background: var(--aw-card);
    transition: border-color .15s, box-shadow .15s;
    overflow: visible;
}
.aw-search:focus-within {
    border-color: var(--aw-blue);
    box-shadow: 0 0 0 3px var(--aw-blue-faint);
}
.aw-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--aw-ink);
    background: transparent;
    border-radius: 25px 0 0 25px;
}
.aw-search input::placeholder { color: var(--aw-muted2); }
.aw-search button {
    flex-shrink: 0;
    height: 36px;
    padding: 0 22px;
    margin: 0 6px;
    border: 0;
    border-radius: 18px;
    background: var(--aw-ink);
    color: var(--aw-yellow);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .01em;
    transition: opacity .15s;
    white-space: nowrap;
}
html[data-marketplace="shopee"] .aw-search > button { background: var(--aw-orange); color: #fff; }
html[data-marketplace="amazon"] .aw-search > button { background: var(--aw-amazon); color: var(--aw-ink); }
.aw-search button:hover { opacity: .86; }

/* Suggest dropdown — z-index must beat everything */
.aw-suggest {
    position: absolute;
    z-index: 9999;
    top: calc(100% + 8px);
    left: -2px;
    right: -2px;
    overflow: hidden;
    border: 1.5px solid var(--aw-border-strong);
    border-radius: 18px;
    background: var(--aw-card);
    box-shadow: var(--aw-shadow-xl), 0 0 0 1px rgba(11,25,41,.04);
    max-height: 380px;
    overflow-y: auto;
    scrollbar-width: none;
}
.aw-suggest::-webkit-scrollbar { display: none; }
.aw-suggest button {
    width: 100%;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 10px 16px;
    border: 0;
    border-bottom: 1px solid var(--aw-border);
    background: transparent;
    color: var(--aw-ink);
    text-align: left;
    font-family: inherit;
    transition: background .12s;
    cursor: pointer;
    overflow: hidden;
}
.aw-suggest button:last-child { border-bottom: 0; }
.aw-suggest button:hover, .aw-suggest button:focus { background: var(--aw-bg); outline: 0; }
.aw-suggest strong {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--aw-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}
.aw-suggest span {
    color: var(--aw-muted);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Marketplace store tabs */
.aw-store-tabs {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1.5px solid var(--aw-border-strong);
    border-radius: 30px;
    background: var(--aw-bg);
    flex-shrink: 0;
}
.aw-store-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    border-radius: 20px;
    color: var(--aw-muted);
    font-size: 13.5px;
    font-weight: 700;
    transition: all .18s ease;
    white-space: nowrap;
}
.aw-store-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 900;
    background: rgba(11, 25, 41, .10);
    color: var(--aw-muted);
    flex-shrink: 0;
}
.aw-store-link:hover { color: var(--aw-ink); }
.aw-store-link.is-active {
    background: var(--aw-ink);
    color: var(--aw-yellow);
    box-shadow: var(--aw-shadow-xs);
}
.aw-store-link.is-active .aw-store-dot {
    background: var(--aw-yellow);
    color: var(--aw-ink);
}
html[data-marketplace="shopee"] .aw-store-link.is-active {
    background: var(--aw-orange);
    color: #fff;
}
html[data-marketplace="shopee"] .aw-store-link.is-active .aw-store-dot {
    background: rgba(255, 255, 255, .25);
    color: #fff;
}
html[data-marketplace="amazon"] .aw-store-link.is-active {
    background: var(--aw-amazon);
    color: var(--aw-ink);
}
html[data-marketplace="amazon"] .aw-store-link.is-active .aw-store-dot {
    background: rgba(0, 0, 0, .12);
    color: var(--aw-ink);
}

/* Category strip */
.aw-category-wrap {
    background: var(--aw-card);
    border-top: 1px solid var(--aw-border);
    overflow: hidden;
}
.aw-category-scroll {
    display: flex;
    width: 100%;
    min-width: 0;
    gap: 6px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: none;
}
.aw-category-scroll::-webkit-scrollbar { display: none; }
.aw-category-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;
    border: 1.5px solid var(--aw-border);
    border-radius: 17px;
    background: transparent;
    color: var(--aw-text);
    font-size: 13px;
    font-weight: 600;
    transition: all .15s ease;
    white-space: nowrap;
}
.aw-category-chip strong { font-size: inherit; font-weight: inherit; }
.aw-category-chip small {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.aw-category-chip:hover {
    color: var(--aw-ink);
    border-color: var(--aw-ink);
    background: rgba(11, 25, 41, .04);
}
.aw-category-chip.is-active {
    background: var(--aw-yellow);
    border-color: var(--aw-yellow-mid);
    color: var(--aw-ink);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 214, 0, .28);
}
html[data-marketplace="shopee"] .aw-category-chip.is-active {
    background: var(--aw-orange);
    border-color: var(--aw-orange);
    color: #fff;
    box-shadow: 0 2px 8px rgba(240, 85, 35, .28);
}

/* === Page === */
.aw-page { padding: 24px 0 64px; }

/* Live rail */
.aw-live-rail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: clamp(16px, 2.5vw, 28px);
    margin-bottom: 20px;
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    background: var(--aw-card);
    box-shadow: var(--aw-shadow);
    overflow: hidden;
    position: relative;
}
.aw-live-rail::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .08) 0%, transparent 70%);
    pointer-events: none;
}
.aw-live-copy {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.aw-live-dot {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
}
.aw-live-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.5);
    animation: aw-pulse 1.8s ease-out infinite;
}
.aw-live-copy strong,
.aw-live-copy h1 {
    display: block;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 800;
    color: var(--aw-ink);
    line-height: 1.1;
    margin: 0;
}
.aw-live-copy small {
    display: block;
    margin-top: 4px;
    color: var(--aw-muted);
    font-size: 14px;
    font-weight: 400;
    max-width: 640px;
}
.aw-live-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}
.aw-live-actions a {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 16px;
    border-radius: 19px;
    border: 1.5px solid var(--aw-border-strong);
    background: var(--aw-card);
    color: var(--aw-text);
    font-size: 13px;
    font-weight: 600;
    transition: all .15s ease;
    white-space: nowrap;
}
.aw-live-actions a:hover {
    color: var(--aw-ink);
    border-color: var(--aw-ink);
    background: var(--aw-bg);
}

/* Section head */
.aw-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 16px;
}
.aw-section-head h2 {
    margin: 6px 0 0;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--aw-ink);
    line-height: 1.1;
}
.aw-section-head p { max-width: 520px; margin: 0; color: var(--aw-muted); font-size: 14px; }
.aw-eyebrow,
.aw-section-head > div > span {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 13px;
    background: var(--aw-blue-faint);
    color: var(--aw-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    width: max-content;
}

/* Vitrine / tabs sections */
.aw-vitrine,
.aw-strip-section {
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    background: var(--aw-card);
    box-shadow: var(--aw-shadow);
    padding: clamp(16px, 2.5vw, 28px);
    margin-bottom: 20px;
    overflow: hidden;
}

.aw-tabs {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    background: var(--aw-bg);
    border: 1px solid var(--aw-border);
    border-radius: 30px;
    margin-bottom: 20px;
}
.aw-tabs .nav-link {
    border-radius: 22px;
    color: var(--aw-muted);
    font-weight: 600;
    font-size: 14px;
    padding: 7px 20px;
    transition: all .15s;
    line-height: 1;
}
.aw-tabs .nav-link:hover { color: var(--aw-ink); background: rgba(11, 25, 41, .04); }
.aw-tabs .nav-link.active {
    background: var(--aw-ink);
    color: var(--aw-yellow);
    box-shadow: var(--aw-shadow-xs);
}
html[data-marketplace="shopee"] .aw-tabs .nav-link.active {
    background: var(--aw-orange);
    color: #fff;
}
html[data-marketplace="amazon"] .aw-tabs .nav-link.active {
    background: var(--aw-amazon);
    color: var(--aw-ink);
}
html[data-marketplace="amazon"] .aw-tabs .nav-link.active .aw-tab-count {
    background: rgba(0, 0, 0, .12);
    color: var(--aw-ink);
}
html[data-marketplace="amazon"] .aw-category-chip.is-active {
    background: var(--aw-amazon);
    border-color: var(--aw-amazon);
    color: var(--aw-ink);
    box-shadow: 0 2px 8px rgba(255, 153, 0, .28);
}

/* How it works */
.aw-how-it-works {
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    background: var(--aw-card);
    box-shadow: var(--aw-shadow-sm);
    padding: clamp(20px, 3vw, 36px);
    margin-bottom: 20px;
}
.aw-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.aw-how-step { display: grid; gap: 8px; }
.aw-how-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--aw-ink);
    color: var(--aw-yellow);
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 900;
}
.aw-how-step strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--aw-ink);
    line-height: 1.2;
}
.aw-how-step p { margin: 0; color: var(--aw-muted); font-size: 13.5px; line-height: 1.5; }

/* === Product Grid === */
.aw-grid { --bs-gutter-x: 12px; --bs-gutter-y: 12px; }

/* === Offer Card === */
.aw-offer {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: var(--aw-card);
    border-radius: var(--aw-radius-lg);
    border: 1px solid var(--aw-border);
    box-shadow: var(--aw-shadow-xs);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.aw-offer:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, .22);
    box-shadow: var(--aw-shadow-lg);
}
.aw-offer.is-shopee:hover { border-color: rgba(240, 85, 35, .22); }
.aw-offer.is-amazon:hover { border-color: rgba(255, 153, 0, .28); }

.aw-offer-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f4f7fb;
    flex-shrink: 0;
    text-decoration: none;
}
/* Bootstrap .ratio > * forces position:absolute + width/height 100% on all children.
   The img gets this for free. Badges need their inset reset so they stay pinned. */
.aw-offer-media > .aw-market-badge,
.aw-offer-media > .aw-discount-badge,
.aw-offer-media > .aw-drop-badge {
    position: absolute;
    width: auto;
    height: auto;
    inset: auto;
}
.aw-offer-img {
    object-fit: contain;
    background: #fff;
    transition: transform .28s ease;
}
.aw-offer:hover .aw-offer-img { transform: scale(1.05); }
.aw-image-placeholder {
    background: linear-gradient(135deg, #f0f5ff, #f4f7fb);
}

/* Card badges */
.aw-market-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    height: 24px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: var(--aw-blue);
    pointer-events: none;
    display: inline-flex;
    align-items: center;
}
.aw-offer.is-shopee .aw-market-badge { background: var(--aw-orange); }
.aw-offer.is-amazon .aw-market-badge { background: var(--aw-amazon); color: var(--aw-ink); }
.aw-offer.is-aliexpress .aw-market-badge { background: #e62e04; color: #fff; }
.aw-offer.is-aliexpress:hover { border-color: rgba(230, 46, 4, .28); }
.aw-offer.is-docebeleza .aw-market-badge { background: #e5397f; color: #fff; }
.aw-offer.is-docebeleza:hover { border-color: rgba(229, 57, 127, .28); }
.aw-discount-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    height: 24px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #16a34a;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
}
.aw-drop-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 3;
    height: 24px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--aw-yellow);
    background: var(--aw-ink);
    pointer-events: none;
    display: inline-flex;
    align-items: center;
}

/* Card body */
.aw-offer-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px 10px;
}
.aw-offer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--aw-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.aw-offer-meta strong { color: var(--aw-green); }
.aw-offer.is-shopee .aw-offer-meta strong { color: var(--aw-orange); }
.aw-offer.is-amazon .aw-offer-meta strong { color: var(--aw-amazon); }

.aw-offer-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.32;
    color: var(--aw-ink);
}
.aw-offer-title a {
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.aw-offer-signal {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    color: var(--aw-muted);
    font-size: 12px;
    font-weight: 500;
}
.aw-signal-rating { color: #92720a; font-weight: 700; }

.aw-price {
    margin-top: auto;
    padding-top: 8px;
    display: grid;
    gap: 2px;
}
.aw-price s { color: var(--aw-muted); font-size: 12.5px; font-weight: 500; }
.aw-price strong {
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 800;
    color: var(--aw-ink);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.aw-price small { color: var(--aw-muted); font-size: 11.5px; margin-top: 2px; }

/* Card footer */
.aw-offer-footer {
    padding: 0 14px 14px;
    display: grid;
    gap: 8px;
}
.aw-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 42px;
    border-radius: 21px;
    border: 0;
    background: var(--aw-blue);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .15s;
    text-decoration: none;
    white-space: nowrap;
}
.aw-buy-btn:hover { opacity: .88; color: #fff; }
.aw-offer.is-shopee .aw-buy-btn { background: var(--aw-orange); }
.aw-offer.is-amazon .aw-buy-btn { background: var(--aw-amazon); color: var(--aw-ink); }

.aw-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.aw-card-actions .btn {
    height: 34px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 17px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* === Filter Panel === */
.aw-filter-panel {
    background: var(--aw-card);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    box-shadow: var(--aw-shadow-sm);
    padding: 18px 22px;
    margin-bottom: 16px;
}
.aw-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.aw-filter-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.aw-filter-header strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--aw-ink);
}
.aw-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    align-items: flex-end;
}
.aw-filter-field { flex: 0 0 auto; min-width: 120px; }
.aw-filter-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--aw-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 5px;
}
.aw-filter-field input,
.aw-filter-field select {
    height: 40px;
    border: 1.5px solid var(--aw-border-strong);
    border-radius: 10px;
    padding: 0 11px;
    font-family: inherit;
    font-size: 14px;
    color: var(--aw-ink);
    background: var(--aw-card);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7d97' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 11px center;
    padding-right: 32px;
}
.aw-filter-field input { background-image: none; padding-right: 11px; }
.aw-filter-field input:focus,
.aw-filter-field select:focus {
    border-color: var(--aw-blue);
    box-shadow: 0 0 0 3px var(--aw-blue-faint);
}
.aw-filter-actions {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    flex-shrink: 0;
    margin-left: auto;
}
.aw-filter-apply {
    height: 40px;
    padding: 0 20px;
    border: 0;
    border-radius: 20px;
    background: var(--aw-ink);
    color: var(--aw-yellow);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .15s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
}
html[data-marketplace="shopee"] .aw-filter-apply { background: var(--aw-orange); color: #fff; }
html[data-marketplace="amazon"] .aw-filter-apply { background: var(--aw-amazon); color: var(--aw-ink); }
.aw-filter-apply:hover { opacity: .86; }
.aw-filter-apply:disabled { opacity: .5; cursor: not-allowed; }

.aw-filter-clear {
    height: 40px;
    padding: 0 16px;
    border: 1.5px solid var(--aw-border-strong);
    border-radius: 20px;
    background: transparent;
    color: var(--aw-muted);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}
.aw-filter-clear:hover { border-color: var(--aw-ink); color: var(--aw-ink); }

/* Mobile filter toggle */
.aw-filter-mobile-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 18px;
    border: 1.5px solid var(--aw-border-strong);
    border-radius: 20px;
    background: var(--aw-card);
    color: var(--aw-text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    margin-bottom: 12px;
}
.aw-filter-mobile-toggle:hover { border-color: var(--aw-ink); color: var(--aw-ink); }
.aw-filter-count {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--aw-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: none;
    place-items: center;
}
.aw-filter-count.has-filters { display: grid; }

/* Active filter chips */
.aw-active-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    min-height: 0;
}
.aw-active-chips:empty { display: none; }
.aw-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 0 10px 0 12px;
    border-radius: 14px;
    background: var(--aw-blue-faint);
    border: 1px solid rgba(37, 99, 235, .18);
    color: var(--aw-blue);
    font-size: 12px;
    font-weight: 700;
}
.aw-chip-remove {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 0;
    background: rgba(37, 99, 235, .15);
    color: var(--aw-blue);
    font-size: 11px;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    display: grid;
    place-items: center;
    transition: background .1s;
    line-height: 1;
    font-weight: 700;
}
.aw-chip-remove:hover { background: rgba(37, 99, 235, .28); }

/* Category/search hero */
.aw-category-hero,
.aw-search-result {
    position: relative;
    overflow: hidden;
    padding: clamp(18px, 2.5vw, 30px);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    background: var(--aw-card);
    box-shadow: var(--aw-shadow);
    margin-bottom: 20px;
}
.aw-category-hero::before,
.aw-search-result::before {
    content: '';
    position: absolute;
    right: -70px;
    top: -70px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .09), transparent 70%);
    pointer-events: none;
}
.aw-category-hero.is-shopee::before { background: radial-gradient(circle, rgba(240, 85, 35, .11), transparent 70%); }
.aw-category-hero.is-amazon::before { background: radial-gradient(circle, rgba(255, 153, 0, .13), transparent 70%); }

.aw-category-hero h1,
.aw-search-result h1 {
    margin: 10px 0 0;
    font-size: clamp(26px, 3.8vw, 50px);
    font-weight: 900;
    color: var(--aw-ink);
    line-height: 1.05;
    text-wrap: balance;
}
.aw-category-hero p,
.aw-search-result p {
    margin: 10px 0 0;
    color: var(--aw-muted);
    font-size: clamp(14px, 1.5vw, 17px);
    max-width: 620px;
}

/* === Load More === */
.aw-load-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 0 4px;
    color: var(--aw-muted);
    font-size: 13px;
}
.aw-lm-track {
    width: min(320px, 90%);
    height: 4px;
    background: var(--aw-border);
    border-radius: 2px;
    overflow: hidden;
}
.aw-lm-fill {
    height: 100%;
    background: var(--aw-blue);
    border-radius: 2px;
    transition: width .5s ease;
}
.aw-load-more .btn {
    height: 48px;
    padding: 0 32px;
    border-radius: 24px;
    font-size: 14.5px;
    font-weight: 700;
}
.aw-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: aw-spin .7s linear infinite;
    vertical-align: middle;
}
@keyframes aw-spin { to { transform: rotate(360deg); } }

/* Tab count badge */
.aw-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 18px;
    padding: 0 5px;
    margin-left: 6px;
    border-radius: 9px;
    background: var(--aw-blue-faint);
    color: var(--aw-blue);
    font-size: 11px;
    font-weight: 700;
    vertical-align: middle;
}
.nav-link.active .aw-tab-count { background: rgba(255,255,255,.25); color: inherit; }

/* === Empty state === */
.aw-empty {
    grid-column: 1 / -1;
    padding: 48px 28px;
    text-align: center;
    color: var(--aw-muted);
    background: var(--aw-card);
    border-radius: var(--aw-radius-lg);
    border: 1px dashed var(--aw-border-strong);
    font-size: 14px;
}

/* === Skeleton === */
.aw-skeleton-card {
    border-radius: var(--aw-radius-lg);
    overflow: hidden;
    background: var(--aw-card);
    border: 1px solid var(--aw-border);
    display: flex;
    flex-direction: column;
}
.aw-skeleton-card .aw-skel-img {
    aspect-ratio: 4/3;
    background: linear-gradient(90deg, #eef2f7 25%, #f5f8fc 50%, #eef2f7 75%);
    background-size: 400% 100%;
    animation: aw-shimmer 1.2s ease-in-out infinite;
}
.aw-skeleton-card .aw-skel-body { padding: 12px 14px 14px; display: grid; gap: 10px; }
.aw-skeleton-card span,
.aw-skeleton-card strong,
.aw-skeleton-card small {
    display: block;
    border-radius: 6px;
    background: linear-gradient(90deg, #eef2f7 25%, #f5f8fc 50%, #eef2f7 75%);
    background-size: 400% 100%;
    animation: aw-shimmer 1.2s ease-in-out infinite;
}
.aw-skeleton-card span { height: 11px; width: 38%; }
.aw-skeleton-card strong { height: 13px; width: 86%; }
.aw-skeleton-card small { height: 11px; width: 52%; }

@keyframes aw-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

/* === Breadcrumb === */
.aw-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--aw-muted);
}
.aw-breadcrumb a { color: var(--aw-blue); font-weight: 600; }
.aw-breadcrumb a:hover { text-decoration: underline; }
.aw-breadcrumb-sep { color: var(--aw-muted2); }

/* === Product page === */
.aw-product-photo-card,
.aw-buy-panel {
    background: var(--aw-card);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    box-shadow: var(--aw-shadow);
}
.aw-buy-panel {
    top: 10rem;
}
.aw-product-photo {
    background: #fff;
    border-radius: var(--aw-radius);
    overflow: hidden;
}
.aw-product-photo img {
    object-fit: contain;
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px;
}
.aw-thumb {
    border-radius: 10px;
    border: 1.5px solid var(--aw-border);
    transition: border-color .15s;
}
.aw-thumb.active, .aw-thumb.border-primary { border-color: var(--aw-blue); box-shadow: 0 0 0 2px var(--aw-blue-faint); }
.aw-product-current-price {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--aw-ink);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.aw-history-bars {
    height: 90px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    padding: 0 2px;
}
/* Each bar: fixed width so a single bar doesn't fill 100% width */
.aw-bar-wrap {
    flex: 0 0 auto;
    width: clamp(20px, calc(100% / 7 - 5px), 48px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    color: var(--aw-muted);
    font-size: 9px;
}
.aw-bar {
    min-height: 6px;
    width: 100%;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, var(--aw-blue), var(--aw-blue-dark));
    transition: opacity .15s;
}
.aw-bar-wrap:hover .aw-bar { opacity: .75; }

/* Product detail page: prevent horizontal overflow */
.aw-product-photo-card,
.aw-buy-panel { max-width: 100%; }
.aw-buy-panel { overflow-x: hidden; }
.aw-product-current-price { word-break: break-word; }
.aw-privacy-content { padding: 0 0 48px; }
.aw-privacy-content h2 { font-size: 1.25rem; font-weight: 700; margin: 28px 0 10px; color: var(--aw-ink); }
.aw-privacy-content p, .aw-privacy-content li { color: var(--aw-muted); font-size: 14.5px; line-height: 1.7; }
.aw-privacy-content code { background: var(--aw-bg); padding: 1px 5px; border-radius: 4px; font-size: 13px; }

/* === Newsletter signup === */
.aw-newsletter {
    margin-top: 56px;
}
.aw-newsletter-box {
    background: linear-gradient(120deg, #12213a 0%, #0b1929 55%, #14243f 100%);
    border-radius: var(--aw-radius-xl);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--aw-shadow-lg);
}
.aw-newsletter-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(420px 220px at 92% 0%, rgba(255, 214, 0, .16), transparent 70%),
        radial-gradient(320px 200px at 6% 100%, rgba(37, 99, 235, .22), transparent 70%);
    pointer-events: none;
}
.aw-newsletter-copy { position: relative; }
.aw-newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 214, 0, .14);
    color: var(--aw-yellow-mid);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.aw-newsletter-copy h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.25;
}
.aw-newsletter-copy p {
    color: rgba(255, 255, 255, .62);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    max-width: 46ch;
}
.aw-newsletter-form {
    position: relative;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    padding: 6px;
}
.aw-newsletter-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    color: rgba(255, 255, 255, .5);
}
.aw-newsletter-input-wrap input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: #ffffff;
    font-size: 14.5px;
    padding: 12px 0;
}
.aw-newsletter-input-wrap input::placeholder { color: rgba(255, 255, 255, .38); }
.aw-newsletter-form button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(120deg, var(--aw-yellow-mid), var(--aw-yellow));
    color: #0b1929;
    font-weight: 800;
    font-size: 14px;
    border: 0;
    border-radius: 10px;
    padding: 0 20px;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}
.aw-newsletter-form button:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255, 214, 0, .25); }
.aw-newsletter-form button:disabled { opacity: .6; cursor: default; transform: none; box-shadow: none; }
.aw-newsletter-success {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7ee787;
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0 0;
}
.aw-newsletter-note {
    position: relative;
    color: rgba(255, 255, 255, .38);
    font-size: 12px;
    margin: 8px 0 0;
}
@media (max-width: 767px) {
    .aw-newsletter-box { grid-template-columns: 1fr; padding: 28px 22px; border-radius: var(--aw-radius-lg); }
    .aw-newsletter-form { flex-direction: column; }
    .aw-newsletter-form button { padding: 12px; justify-content: center; }
}

/* === Enterprise Footer === */
.aw-footer {
    background: var(--aw-ink);
    color: rgba(255, 255, 255, .72);
    margin-top: 48px;
    overflow: hidden;
}
.aw-footer-main {
    padding: 52px 0 36px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.aw-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    text-decoration: none;
}
.aw-footer-logo:hover { color: #fff; }
.aw-footer-logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--aw-yellow);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.aw-footer-logo-icon img { width: 28px; height: 28px; object-fit: contain; display: block; }
.aw-footer-tagline {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .52);
    max-width: 280px;
    margin-bottom: 22px;
}
.aw-footer-wpp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 18px;
    border-radius: 21px;
    border: 0;
    background: #25d366;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .15s;
}
.aw-footer-wpp-btn:hover { opacity: .88; color: #fff; }
.aw-footer-disclaimer {
    margin-top: 16px;
    font-size: 11.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .32);
    max-width: 280px;
}
.aw-footer-col h4 {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: rgba(255, 255, 255, .40);
    margin: 0 0 14px;
}
.aw-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.aw-footer-col li a {
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    font-weight: 500;
    transition: color .15s;
    text-decoration: none;
}
.aw-footer-col li a:hover { color: #fff; }
.aw-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
}
.aw-footer-bottom a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .15s;
}
.aw-footer-bottom a:hover { color: rgba(255, 255, 255, .75); }
.aw-footer-links { display: flex; gap: 20px; }

/* === LGPD Cookie Banner === */
.aw-lgpd {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1990;
    background: rgba(11, 25, 41, .97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255,255,255,.88);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.aw-lgpd.is-visible { transform: translateY(0); }
.aw-lgpd-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.aw-lgpd-text { font-size: 13px; color: rgba(255,255,255,.72); }
.aw-lgpd-link { color: var(--aw-yellow); text-decoration: underline; }
.aw-lgpd-accept { background: var(--aw-yellow); color: var(--aw-ink); border-color: var(--aw-yellow); font-weight: 700; }
.aw-lgpd-accept:hover { background: var(--aw-yellow-mid); border-color: var(--aw-yellow-mid); color: var(--aw-ink); }

/* === NOVO badge — sits on the article (position:relative), not inside .ratio === */
.aw-new-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
    background: #16a34a;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .08em;
    padding: 4px 8px;
    border-radius: 5px;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
}

/* === Suggest: full-width, no overflow === */
.aw-suggest { width: 100%; max-width: 100%; overflow-x: hidden; }

/* === Tab pane transition (overrides Bootstrap default 0.15s) === */
.tab-pane.fade {
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transform: translateY(10px);
}
.tab-pane.fade.show {
    transform: translateY(0) !important;
}

/* === Tab button transitions === */
.aw-tabs .nav-link {
    transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease !important;
    will-change: transform;
}
.aw-tabs .nav-link:active { transform: scale(0.96); }
.aw-tabs .nav-link.active { animation: aw-tab-pop 0.28s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes aw-tab-pop {
    0% { transform: scale(0.92); }
    100% { transform: scale(1); }
}

/* === Store link transitions === */
.aw-store-link {
    transition: background 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                color 0.22s ease,
                box-shadow 0.22s ease,
                transform 0.16s ease !important;
    will-change: transform;
}
.aw-store-link:not(.is-active):active { transform: scale(0.94); }

/* === Page entrance animation — pure opacity crossfade, no layout shift === */
.aw-page {
    animation: aw-page-enter 0.18s ease both;
}
@keyframes aw-page-enter {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.aw-header {
    animation: aw-header-enter 0.18s ease both;
}
@keyframes aw-header-enter {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* === Animations === */
@keyframes aw-pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .aw-live-dot::after { animation: none; }
    .aw-offer,
    .aw-store-link,
    .aw-category-chip { transition: none; }
}

/* === Responsive === */
@media (max-width: 1199px) {
    .aw-footer-main { grid-template-columns: 1.6fr 1fr 1fr; }
    .aw-footer-main > *:last-child { grid-column: 2 / 4; }
}

@media (max-width: 991px) {
    /* 4 lojas: grid 2x2 dá área de toque confortável (antes 3 col = AliExpress espremido) */
    .aw-store-tabs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; border-radius: 14px; padding: 5px; width: 100%; }
    .aw-store-link { height: 40px; justify-content: center; }
    .aw-footer-main { grid-template-columns: 1fr 1fr; }
    .aw-footer-main > *:last-child { grid-column: auto; }
    .aw-how-steps { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 767px) {
    .aw-topbar { display: none; }
    .aw-brand-text strong { font-size: 18px; }
    .aw-brand-text em { font-size: 10px; }
    .aw-brand-icon { width: 38px; height: 38px; border-radius: 10px; }
    .aw-brand-icon img { width: 28px; height: 28px; }
    .aw-search { height: 44px; }
    .aw-search input { font-size: 14px; padding: 0 10px; }
    .aw-search button { height: 30px; padding: 0 14px; font-size: 13px; }
    .aw-store-tabs { width: 100%; border-radius: 12px; }
    .aw-store-link { font-size: 12.5px; padding: 0 8px; gap: 5px; justify-content: center; }
    .aw-store-dot { width: 20px; height: 20px; font-size: 8px; }
    .aw-category-chip { font-size: 12px; height: 30px; padding: 0 11px; }
    .aw-page { padding: 14px 0 48px; }

    /* Live rail: compact on mobile — hide category shortcut links, keep only WhatsApp */
    .aw-live-rail { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px; }
    .aw-live-copy small { font-size: 13px; }
    .aw-live-copy strong, .aw-live-copy h1 { font-size: 17px; }
    .aw-live-actions { width: 100%; }
    .aw-live-actions a { height: 36px; font-size: 13px; }

    /* Cards: hide share button, single-col actions */
    .aw-card-actions { grid-template-columns: 1fr; }
    .aw-card-actions button[data-share-url] { display: none; }
    .aw-offer-title { font-size: 12.5px; }
    .aw-price strong { font-size: 19px; }
    .aw-buy-btn { height: 38px; font-size: 12.5px; gap: 5px; padding: 0 6px; }
    .aw-offer-body { padding: 10px 12px 8px; gap: 4px; }

    /* Abas de loja da vitrine (4 lojas): grid 2x2 em vez de fila espremida */
    .aw-tabs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; width: 100%; border-radius: 14px; }
    .aw-tabs .nav-link { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 12.5px; padding: 8px 8px; text-align: center; white-space: nowrap; }
    .aw-offer-footer { padding: 0 12px 12px; gap: 6px; }

    /* Filters */
    .aw-filter-panel { padding: 14px 16px; }
    .aw-filter-mobile-toggle { display: flex; }
    .aw-filter-panel-inner { display: none; }
    .aw-filter-panel-inner.is-open { display: block; }
    .aw-filter-row { flex-direction: column; gap: 10px; }
    .aw-filter-field { min-width: 100%; }
    .aw-filter-actions { width: 100%; }
    .aw-filter-apply, .aw-filter-clear { flex: 1; justify-content: center; }

    /* Footer */
    .aw-footer-main { grid-template-columns: 1fr; gap: 24px; padding: 32px 0 20px; }
    .aw-footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .aw-footer-links { justify-content: center; flex-wrap: wrap; gap: 12px; }

    /* Product detail */
    .aw-product-current-price { font-size: 2.4rem; }
    .aw-buy-panel { top: auto; position: relative; }
    .aw-product-photo-card { margin-bottom: 16px; padding: 0; }

    /* Breadcrumb: truncate on mobile to prevent overflow */
    .aw-breadcrumb { flex-wrap: nowrap; overflow: hidden; }
    .aw-breadcrumb > *:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

    /* Section heads */
    .aw-section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
    .aw-section-head p { display: none; }

    /* Refresh bar mobile */
    .aw-refresh-bar {
        bottom: 16px;
        border-radius: 14px;
        padding: 11px 10px 11px 14px;
        gap: 9px;
    }
    .aw-refresh-bar [data-refresh-msg] { font-size: 13px; }
    .aw-refresh-bar [data-refresh-reload] { height: 36px; padding: 0 14px; font-size: 12px; border-radius: 9px; }
    .aw-refresh-bar [data-refresh-dismiss] { width: 30px; height: 30px; }

    /* Page enter on mobile — same opacity-only as desktop */
    @keyframes aw-page-enter {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    .aw-scroll-top {
        bottom: 24px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}

/* ===================================================
   Fresh card glow + drop pulse
   =================================================== */
.aw-offer--fresh {
    box-shadow: 0 0 0 2px rgba(34,197,94,.35), var(--aw-shadow);
}
.aw-offer--drop .aw-drop-badge {
    animation: aw-drop-pulse 2s ease-in-out infinite;
}
@keyframes aw-drop-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.06); }
}
.aw-card-age {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    color: #15803d;
    background: #dcfce7;
    border: 1.5px solid #86efac;
    padding: 3px 9px;
    border-radius: 12px;
    width: fit-content;
    margin-bottom: 2px;
    white-space: nowrap;
}

/* ===================================================
   Recém chegados strip — aw-recent-strip
   =================================================== */
.aw-recent-strip {
    margin-bottom: 28px;
}
.aw-recent-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 2px 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--aw-border-strong) transparent;
    -webkit-overflow-scrolling: touch;
}
.aw-recent-scroll::-webkit-scrollbar { height: 4px; }
.aw-recent-scroll::-webkit-scrollbar-track { background: transparent; }
.aw-recent-scroll::-webkit-scrollbar-thumb { background: var(--aw-border-strong); border-radius: 2px; }
.aw-rc {
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--aw-card);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    box-shadow: var(--aw-shadow-sm);
    padding: 10px 14px 10px 10px;
    text-decoration: none;
    color: inherit;
    width: 240px;
    transition: box-shadow .15s, border-color .15s;
}
.aw-rc:hover { box-shadow: var(--aw-shadow); border-color: var(--aw-border-strong); color: inherit; text-decoration: none; }
.aw-rc--fresh { border-color: rgba(34,197,94,.4); }
.aw-rc-img {
    flex: 0 0 auto;
    width: 72px; height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--aw-bg);
}
.aw-rc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aw-rc-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.aw-rc-age {
    font-size: 10px; font-weight: 700;
    color: var(--aw-green);
    display: flex; align-items: center; gap: 3px;
}
.aw-rc-title {
    font-size: 12px; font-weight: 600;
    color: var(--aw-ink);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.aw-rc-price { font-size: 14px; font-weight: 800; color: var(--aw-ink); margin-top: 2px; }
.aw-rc-mp {
    display: inline-flex;
    align-items: center;
    height: 16px;
    padding: 0 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    width: fit-content;
    margin-top: 2px;
}
.aw-rc-mp--mercadolivre { background: var(--aw-blue); color: #fff; }
.aw-rc-mp--shopee { background: var(--aw-orange); color: #fff; }
.aw-rc-mp--amazon { background: var(--aw-amazon); color: var(--aw-ink); }

/* ===================================================
   Product Detail Page — aw-pd-*
   =================================================== */
.aw-pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}
.aw-product-photo-card {
    background: var(--aw-card);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    box-shadow: var(--aw-shadow);
    padding: 0;
    overflow: hidden;
}
.aw-buy-panel {
    background: var(--aw-card);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    box-shadow: var(--aw-shadow);
    padding: 20px 22px;
    position: sticky;
    top: 80px;
}
.aw-pd-thumbs { display: flex; gap: 6px; overflow-x: auto; padding: 10px 12px 12px; scrollbar-width: none; }
.aw-pd-thumbs::-webkit-scrollbar { display: none; }
.aw-thumb {
    flex: 0 0 auto;
    width: 56px; height: 56px;
    border: 2px solid var(--aw-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    padding: 0;
    transition: border-color .15s;
}
.aw-thumb.active, .aw-thumb:hover { border-color: var(--aw-blue); }
.aw-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aw-pd-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.aw-pd-badge {
    display: inline-flex; align-items: center;
    height: 22px; padding: 0 10px; border-radius: 11px;
    font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.aw-pd-badge--mercadolivre { background: var(--aw-blue); color: #fff; }
.aw-pd-badge--shopee { background: var(--aw-orange); color: #fff; }
.aw-pd-badge--amazon { background: var(--aw-amazon); color: var(--aw-ink); }
.aw-pd-badge--cat { background: var(--aw-bg); color: var(--aw-muted); border: 1px solid var(--aw-border); }
.aw-pd-badge--off { background: #dcfce7; color: #16a34a; }
.aw-pd-title { font-size: clamp(15px, 2vw, 21px); font-weight: 800; line-height: 1.3; color: var(--aw-ink); margin: 0 0 10px; }
.aw-pd-signal { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 14px; margin-bottom: 14px; color: var(--aw-muted); font-size: 13px; }
.aw-signal-rating { display: flex; align-items: center; gap: 5px; color: var(--aw-ink); font-weight: 600; }
.aw-signal-rating-num { font-weight: 700; color: var(--aw-ink); }
.aw-signal-reviews { display: flex; align-items: center; gap: 5px; }
.aw-stars { color: #f59e0b; font-size: 15px; letter-spacing: 1px; line-height: 1; }

/* Reviews card */
.aw-pd-reviews-card {
    background: var(--aw-card); border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg); padding: 20px 22px; box-shadow: var(--aw-shadow);
}
.aw-pd-reviews-summary { display: flex; gap: 24px; align-items: flex-start; margin: 14px 0 12px; flex-wrap: wrap; }
.aw-pd-rating-big { display: flex; align-items: center; gap: 14px; }
.aw-pd-rating-score { font-size: 3rem; font-weight: 900; color: var(--aw-ink); line-height: 1; }
.aw-pd-rating-right { display: flex; flex-direction: column; gap: 4px; }
.aw-pd-stars-lg .aw-stars { font-size: 20px; }
.aw-pd-rating-count { font-size: 12px; color: var(--aw-muted); }
.aw-pd-rating-bars { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 140px; }
.aw-pd-rbar-row { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--aw-muted); }
.aw-pd-rbar-row span { min-width: 18px; text-align: right; }
.aw-pd-rbar-track { flex: 1; height: 7px; background: var(--aw-bg); border-radius: 4px; overflow: hidden; }
.aw-pd-rbar-fill { height: 100%; background: #f59e0b; border-radius: 4px; }
.aw-pd-reviews-note { font-size: 12px; color: var(--aw-muted2); margin: 0; display: flex; align-items: center; gap: 5px; }
.aw-pd-price-block { margin-bottom: 18px; }
.aw-pd-orig { color: var(--aw-muted); font-size: 14px; display: block; text-decoration: line-through; margin-bottom: 4px; }
.aw-pd-saving { font-size: 13px; font-weight: 600; color: var(--aw-green); margin-top: 6px; }
.aw-pd-avail { font-size: 13px; color: var(--aw-muted); margin-top: 6px; }
.aw-pd-cta-buy {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; height: 52px; border-radius: 26px;
    font-family: inherit; font-size: 15px; font-weight: 800;
    text-decoration: none; border: 0; transition: opacity .15s; margin-bottom: 10px;
    cursor: pointer;
}
.aw-pd-cta-buy:hover { opacity: .88; text-decoration: none; }
.aw-pd-cta-buy--mercadolivre { background: var(--aw-blue); color: #fff; }
.aw-pd-cta-buy--mercadolivre:hover { color: #fff; }
.aw-pd-cta-buy--shopee { background: var(--aw-orange); color: #fff; }
.aw-pd-cta-buy--shopee:hover { color: #fff; }
.aw-pd-cta-buy--amazon { background: var(--aw-amazon); color: var(--aw-ink); }
.aw-pd-cta-buy--amazon:hover { color: var(--aw-ink); }
.aw-pd-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.aw-pd-action-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    height: 38px; border-radius: 19px;
    border: 1.5px solid var(--aw-border-strong); background: transparent;
    color: var(--aw-text); font-family: inherit; font-size: 12.5px; font-weight: 600;
    cursor: pointer; transition: all .15s;
}
.aw-pd-action-btn:hover { border-color: var(--aw-ink); color: var(--aw-ink); }
.aw-pd-trust { display: flex; flex-direction: column; gap: 7px; padding: 12px 14px; border-radius: var(--aw-radius); background: var(--aw-bg); border: 1px solid var(--aw-border); }
.aw-pd-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: var(--aw-text); }
.aw-pd-trust-item .bi-graph-down-arrow { color: var(--aw-green); }
.aw-pd-trust-item .bi-shield-check { color: var(--aw-blue); }
.aw-pd-trust-item .bi-arrow-repeat { color: var(--aw-orange); }

/* Description + History lower grid */
.aw-pd-lower { display: grid; grid-template-columns: 3fr 2fr; gap: 16px; margin-bottom: 20px; align-items: start; }
.aw-pd-desc-card, .aw-pd-history-card {
    background: var(--aw-card); border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg); box-shadow: var(--aw-shadow-sm); padding: 20px 22px;
}
.aw-pd-section-title { font-size: 14px; font-weight: 800; color: var(--aw-ink); margin: 0 0 12px; text-transform: uppercase; letter-spacing: .04em; }
.aw-pd-desc-text { color: var(--aw-muted); font-size: 14px; line-height: 1.72; margin: 0; }
.aw-pd-history-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.aw-pd-drop-badge { display: inline-flex; align-items: center; height: 22px; padding: 0 10px; border-radius: 11px; background: #dcfce7; color: #16a34a; font-size: 11px; font-weight: 700; }
.aw-pd-hstats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 14px; }
.aw-pd-hstat { background: var(--aw-bg); border-radius: 8px; padding: 8px 10px; display: grid; gap: 2px; }
.aw-pd-hstat span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--aw-muted2); }
.aw-pd-hstat strong { font-size: 13px; font-weight: 800; color: var(--aw-ink); }
.aw-pd-hstat--low strong { color: var(--aw-green); }
.aw-pd-hstat--cur strong { color: var(--aw-blue); }
.aw-pd-history-empty { display: flex; align-items: center; gap: 8px; color: var(--aw-muted); font-size: 13px; margin: 0; padding: 8px 0; }

/* History bars — KEY FIX: flex: 1 1 0 makes bars share width evenly instead of overflowing */
.aw-history-bars { height: 80px; display: flex; align-items: flex-end; gap: 3px; overflow: hidden; padding: 0; }
.aw-bar-wrap {
    flex: 1 1 0;
    min-width: 12px;
    max-width: 44px;
    height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    gap: 3px; color: var(--aw-muted); font-size: 8px; overflow: hidden;
}
.aw-bar { width: 100%; border-radius: 3px 3px 0 0; background: var(--aw-blue); opacity: .7; transition: opacity .15s; min-height: 4px; }
.aw-bar-wrap:hover .aw-bar { opacity: 1; }

/* WhatsApp CTA */
.aw-pd-wpp-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; background: var(--aw-card); border: 1px solid var(--aw-border); border-radius: var(--aw-radius-lg); box-shadow: var(--aw-shadow-sm); padding: 20px 24px; margin-bottom: 24px; }
.aw-pd-wpp-copy { display: flex; flex-direction: column; gap: 3px; }
.aw-pd-wpp-copy strong { font-size: 15px; font-weight: 800; color: var(--aw-ink); }
.aw-pd-wpp-copy span { font-size: 13px; color: var(--aw-muted); }
.aw-pd-wpp-btn { display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 20px; border-radius: 22px; background: #25d366; color: #fff; font-family: inherit; font-size: 14px; font-weight: 700; text-decoration: none; transition: opacity .15s; }
.aw-pd-wpp-btn:hover { opacity: .88; color: #fff; }

/* Expired */
.aw-pd-expired { padding: 64px 24px; background: var(--aw-card); border: 1px solid var(--aw-border); border-radius: var(--aw-radius-lg); }
.aw-pd-expired-icon { font-size: 52px; color: var(--aw-muted2); margin-bottom: 16px; display: block; }

/* Product detail responsive */
@media (max-width: 991px) {
    .aw-pd-lower { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .aw-pd-grid { grid-template-columns: 1fr; gap: 12px; }
    .aw-buy-panel { position: relative; top: auto; padding: 16px; }
    .aw-product-photo-card { padding: 0; }
    .aw-pd-lower { gap: 12px; }
    .aw-pd-desc-card, .aw-pd-history-card { padding: 16px; }
    .aw-pd-wpp-cta { flex-direction: column; padding: 16px; }
    .aw-pd-wpp-btn { width: 100%; justify-content: center; }
    .aw-product-current-price { font-size: 2.2rem; }
    .aw-bar-wrap span { display: none; }
    .aw-history-bars { height: 64px; }
}

/* Bootstrap override patches */
.btn { font-family: 'DM Sans', system-ui, sans-serif; }
.card { border-radius: var(--aw-radius-lg); }
.badge { font-family: inherit; }
.breadcrumb-item a { color: var(--aw-blue); font-weight: 600; }
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(11, 25, 41, .70);
    backdrop-filter: blur(4px);
    opacity: 1;
}

/* ===================================================
   Scroll-to-top button
   =================================================== */
.aw-scroll-top {
    position: fixed;
    bottom: 88px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--aw-blue);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 22px rgba(0, 99, 220, .4), 0 2px 6px rgba(0,0,0,.25);
    opacity: 0;
    transform: translateY(20px) scale(0.86);
    transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.15s ease,
                box-shadow 0.15s ease;
    z-index: 1048;
    pointer-events: none;
}
.aw-scroll-top.is-visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.aw-scroll-top:hover {
    background: #1a7fe8;
    box-shadow: 0 6px 28px rgba(0, 99, 220, .55), 0 2px 8px rgba(0,0,0,.3);
    transform: translateY(-3px) scale(1.08);
}
.aw-scroll-top:active {
    transform: scale(0.92);
    transition-duration: 0.08s;
}

/* ── FAQ section ──────────────────────────────────────────────────────────── */
.aw-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.aw-faq-item {
    background: var(--aw-surface);
    border: 1px solid var(--aw-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.18s ease;
}
.aw-faq-item[open] { border-color: var(--aw-blue); }
.aw-faq-q {
    padding: 14px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--aw-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.aw-faq-q::-webkit-details-marker { display: none; }
.aw-faq-q::after {
    content: '+';
    font-size: 18px;
    font-weight: 400;
    color: var(--aw-muted);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.aw-faq-item[open] .aw-faq-q::after { transform: rotate(45deg); }
.aw-faq-a {
    padding: 0 16px 14px;
    margin: 0;
    font-size: 13.5px;
    color: var(--aw-muted);
    line-height: 1.6;
}

/* ── Related products section ─────────────────────────────────────────────── */
.aw-pd-related {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--aw-border);
}

/* ── Push notification bell ───────────────────────────────────────────────── */
.aw-push-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 20px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.15s ease;
    white-space: nowrap;
}
.aw-push-btn i { font-size: 13px; }
.aw-push-btn:hover {
    background: rgba(255,255,255,.22);
    transform: scale(1.04);
}
.aw-push-btn:active { transform: scale(0.95); }
.aw-push-btn.is-subscribed {
    background: rgba(34,197,94,.18);
    border-color: rgba(34,197,94,.4);
    color: #86efac;
}

/* ── Toast notification ───────────────────────────────────────────────────── */
.aw-toast {
    position: fixed;
    bottom: 88px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1e293b;
    color: #f1f5f9;
    font-size: 13.5px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 2000;
    max-width: calc(100vw - 32px);
    text-align: center;
}
.aw-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* ======================================================
   BLOG — Design System
   ====================================================== */

/* ── Blog wrapper — lives inside .aw-page > .container-xxl ── */
.aw-blog-list-wrap { padding-bottom: 64px; }
.aw-blog-post-wrap { padding-bottom: 64px; }

/* Full-bleed hero: breaks out of container-xxl via margin trick */
.aw-blog-post__hero-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -24px; /* cancel .aw-page padding-top */
    background: linear-gradient(135deg, var(--aw-ink) 0%, #1a3356 100%);
    /* max(20px, ...) garante padding mínimo em viewports < 1320px */
    padding: 32px max(20px, calc(50vw - min(50vw, 660px))) 48px;
    color: #fff;
}

/* ── Blog list page ─────────────────────────────────── */
.aw-blog-main { padding: 0 0 80px; }

.aw-blog-header {
    padding: 56px 0 48px;
    text-align: center;
}
.aw-blog-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--aw-blue);
    background: var(--aw-blue-faint);
    border-radius: 99px;
    padding: 4px 14px;
    margin-bottom: 20px;
}
.aw-blog-header__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--aw-ink);
    margin-bottom: 16px;
    text-wrap: balance;
}
.aw-blog-header__sub {
    font-size: 1.1rem;
    color: var(--aw-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.aw-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.aw-blog-card {
    background: var(--aw-card);
    border-radius: var(--aw-radius-lg);
    box-shadow: var(--aw-shadow-sm);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.aw-blog-card:hover { transform: translateY(-4px); box-shadow: var(--aw-shadow-lg); }

.aw-blog-card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }

.aw-blog-card__cover {
    position: relative;
    height: 140px;
    background: linear-gradient(135deg, var(--aw-ink) 0%, #1e3a5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.aw-blog-card__emoji {
    font-size: 3.5rem;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.aw-blog-card__tags {
    position: absolute;
    bottom: 10px;
    left: 14px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.aw-blog-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--aw-ink);
    background: var(--aw-yellow);
    border-radius: 99px;
    padding: 2px 10px;
}
.aw-blog-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.aw-blog-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--aw-ink);
    margin: 0;
}
.aw-blog-card__excerpt {
    font-size: .88rem;
    color: var(--aw-muted);
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.aw-blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--aw-muted2);
    margin-top: 4px;
}
.aw-blog-card__cta {
    color: var(--aw-blue);
    font-weight: 600;
}

/* ── Blog post page ─────────────────────────────────── */
.aw-blog-post__hero {
    background: linear-gradient(135deg, var(--aw-ink) 0%, #1a3356 100%);
    padding: 32px 0 48px;
    color: #fff;
}
.aw-blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 28px;
}
.aw-blog-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.aw-blog-breadcrumb a:hover { color: #fff; }
.aw-blog-post__hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}
.aw-blog-post__hero-emoji {
    font-size: 4rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,.3));
}
.aw-blog-post__hero-content { flex: 1; }
.aw-blog-post__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.aw-blog-post__title {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 14px;
    text-wrap: balance;
}
.aw-blog-post__excerpt {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
    margin: 0 0 16px;
}
.aw-blog-post__meta {
    display: flex;
    gap: 20px;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}
.aw-blog-post__meta i { margin-right: 4px; }

/* ── Related posts wrapper (inside content column) ── */
.aw-blog-related-wrap { margin-top: 40px; }

/* ── Post layout: content + sidebar ────────────────── */
.aw-blog-post__layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding-top: 40px;
    align-items: start;
}
@media (max-width: 860px) {
    .aw-blog-post__layout { grid-template-columns: 1fr; }
    .aw-blog-post__sidebar { display: none; }
    .aw-blog-post__hero-inner { flex-direction: column; gap: 16px; }
    .aw-blog-post__hero-emoji { font-size: 3rem; }
    .aw-blog-grid { grid-template-columns: 1fr; }
}

/* ── Content typography ─────────────────────────────── */
.aw-blog-post__content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--aw-text);
    min-width: 0;
}
.aw-blog-post__content h2,
.aw-blog-post__content .aw-blog-h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--aw-ink);
    margin: 48px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--aw-border);
}
.aw-blog-post__content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--aw-ink);
    margin: 32px 0 12px;
}
.aw-blog-post__content p { margin: 0 0 20px; }
.aw-blog-post__content strong { color: var(--aw-ink); }
.aw-blog-post__content a { color: var(--aw-blue); }

/* ── FAQ items ──────────────────────────────────────── */
.aw-blog-faq-item {
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius);
    margin-bottom: 10px;
    overflow: hidden;
}
.aw-blog-faq-item summary {
    padding: 16px 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--aw-card);
    color: var(--aw-ink);
    font-size: .95rem;
}
.aw-blog-faq-item summary::-webkit-details-marker { display: none; }
.aw-blog-faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--aw-blue);
    flex-shrink: 0;
}
.aw-blog-faq-item[open] summary::after { content: '−'; }
.aw-blog-faq-item p {
    padding: 0 20px 16px;
    margin: 0;
    color: var(--aw-muted);
    font-size: .93rem;
    background: var(--aw-card);
}
.aw-blog-post__faq-header { display: none; }

/* ── Live deals section inside post ────────────────── */
.aw-blog-deals-section {
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f4ff 100%);
    border: 1px solid rgba(37,99,235,.15);
    border-radius: var(--aw-radius-lg);
    padding: 28px;
    margin: 40px 0;
}
.aw-blog-deals-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--aw-ink);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.aw-blog-deals-title i { color: var(--aw-blue); }
.aw-blog-deals-sub {
    font-size: .88rem;
    color: var(--aw-muted);
    margin: 0 0 20px;
}
.aw-blog-deals-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.aw-blog-deals-footer {
    margin-top: 20px;
    text-align: center;
}
.aw-blog-deals-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--aw-blue);
    text-decoration: none;
    padding: 8px 20px;
    border: 1.5px solid var(--aw-blue);
    border-radius: 99px;
    transition: background .15s, color .15s;
}
.aw-blog-deals-more:hover { background: var(--aw-blue); color: #fff; }

/* ── Deal card inside blog post ─────────────────────── */
.aw-blog-deal {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border-radius: var(--aw-radius);
    padding: 16px;
    box-shadow: var(--aw-shadow-xs);
    transition: box-shadow .15s;
}
.aw-blog-deal:hover { box-shadow: var(--aw-shadow); }
.aw-blog-deal__img-wrap {
    position: relative;
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: var(--aw-radius-sm);
    overflow: hidden;
    display: block;
    background: var(--aw-bg);
}
.aw-blog-deal__img { width: 100%; height: 100%; object-fit: contain; }
.aw-blog-deal__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--aw-muted2); }
.aw-blog-deal__disc {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--aw-orange);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
}
.aw-blog-deal__info { flex: 1; min-width: 0; }
.aw-blog-deal__badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 4px;
    padding: 2px 7px;
    margin-bottom: 6px;
}
.aw-blog-deal__badge--mercadolivre { background: #fff159; color: #0a1628; }
.aw-blog-deal__badge--shopee { background: #ee4d2d; color: #fff; }
.aw-blog-deal__badge--amazon { background: #f90; color: #111; }
.aw-blog-deal__title {
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 8px;
}
.aw-blog-deal__title a { color: var(--aw-ink); text-decoration: none; }
.aw-blog-deal__title a:hover { color: var(--aw-blue); }
.aw-blog-deal__pricing { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.aw-blog-deal__orig { font-size: .8rem; color: var(--aw-muted2); text-decoration: line-through; }
.aw-blog-deal__price { font-size: 1.1rem; font-weight: 800; color: var(--aw-green); }
.aw-blog-deal__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    background: var(--aw-blue);
    border-radius: 8px;
    padding: 7px 14px;
    text-decoration: none;
    transition: background .15s;
}
.aw-blog-deal__cta:hover { background: var(--aw-blue-dark); }

/* ── CTA box ─────────────────────────────────────────── */
.aw-blog-post__cta-box {
    background: var(--aw-ink);
    border-radius: var(--aw-radius-lg);
    padding: 28px;
    margin: 40px 0;
    text-align: center;
    color: #fff;
}
.aw-blog-post__cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 16px;
}
.aw-blog-post__cta-more, .aw-blog-post__cta-cat {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 99px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    margin: 6px;
    transition: .15s;
}
.aw-blog-post__cta-more { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.2); }
.aw-blog-post__cta-more:hover { background: rgba(255,255,255,.2); color: #fff; }
.aw-blog-post__cta-cat { background: var(--aw-yellow); color: var(--aw-ink); }
.aw-blog-post__cta-cat:hover { background: var(--aw-yellow-mid); }

/* ── Sidebar ─────────────────────────────────────────── */
.aw-blog-post__sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px; }
.aw-blog-sidebar-card {
    background: var(--aw-card);
    border-radius: var(--aw-radius);
    box-shadow: var(--aw-shadow-sm);
    padding: 20px;
}
.aw-blog-sidebar-card--deals { background: linear-gradient(135deg, #f0f6ff 0%, #e8f4ff 100%); }
.aw-blog-sidebar-card__title {
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--aw-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.aw-blog-sidebar-card__title i { color: var(--aw-blue); }
.aw-blog-toc { display: flex; flex-direction: column; gap: 2px; }
.aw-blog-toc__link {
    font-size: .85rem;
    color: var(--aw-muted);
    text-decoration: none;
    padding: 5px 0 5px 12px;
    border-left: 2px solid var(--aw-border);
    transition: color .15s, border-color .15s;
    line-height: 1.4;
}
.aw-blog-toc__link:hover { color: var(--aw-blue); border-color: var(--aw-blue); }
.aw-blog-sidebar-empty { font-size: .85rem; color: var(--aw-muted2); margin: 0; }
.aw-blog-sidebar-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--aw-blue);
    color: #fff;
    border-radius: var(--aw-radius);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    transition: background .15s;
}
.aw-blog-sidebar-all:hover { background: var(--aw-blue-dark); }
.aw-blog-sidebar-all .aw-blog-deal { box-shadow: none; padding: 0; background: transparent; }

/* ── Sidebar deal card: layout vertical proporcional ── */
.aw-blog-sidebar-card--deals .aw-blog-deal {
    flex-direction: column;
    padding: 0;
    box-shadow: none;
    background: transparent;
    gap: 12px;
}
.aw-blog-sidebar-card--deals .aw-blog-deal__img-wrap {
    width: 100%;
    height: 170px;
    border-radius: 10px;
    flex-shrink: 0;
}
.aw-blog-sidebar-card--deals .aw-blog-deal__img {
    border-radius: 10px;
}
.aw-blog-sidebar-card--deals .aw-blog-deal__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.aw-blog-sidebar-card--deals .aw-blog-deal__title {
    font-size: .9rem;
    -webkit-line-clamp: 3;
}
.aw-blog-sidebar-card--deals .aw-blog-deal__pricing {
    margin-bottom: 0;
}
.aw-blog-sidebar-card--deals .aw-blog-deal__cta {
    display: flex;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    margin-top: 4px;
}

/* ── Deal card: botão sempre visível, texto nunca escondido ─ */
.aw-blog-deal__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 700;
    color: #ffffff !important;
    background: var(--aw-blue);
    border-radius: 8px;
    padding: 8px 14px;
    text-decoration: none !important;
    transition: background .15s;
    white-space: nowrap;
    line-height: 1;
}
.aw-blog-deal__cta:hover { background: var(--aw-blue-dark); color: #ffffff !important; }

/* ── Deal cards: responsividade mobile ─────────────────── */
@media (max-width: 560px) {
    .aw-blog-deal {
        flex-direction: column;
        gap: 10px;
    }
    .aw-blog-deal__img-wrap {
        width: 100%;
        height: 180px;
    }
    .aw-blog-deal__cta {
        display: flex;
        width: 100%;
        justify-content: center;
    }
    .aw-blog-deals-grid {
        gap: 16px;
    }
    .aw-blog-post__hero-bleed {
        margin-left: -16px;
        width: calc(100% + 32px);
        left: 0;
        padding: 28px 16px;
    }
}

/* ── Blog list: mobile ──────────────────────────────── */
@media (max-width: 560px) {
    .aw-blog-grid { grid-template-columns: 1fr; gap: 14px; }
    .aw-blog-card__cover { height: 120px; }
    .aw-blog-header__title { font-size: 1.8rem; }
    .aw-blog-related__grid { grid-template-columns: 1fr; }
}

/* ── Deals footer link — padrão visual claro ────────── */
.aw-blog-deals-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--aw-blue);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .15s;
    white-space: nowrap;
}
.aw-blog-deals-more:hover { background: var(--aw-blue-dark); color: #ffffff !important; }

/* ── Related posts ───────────────────────────────────── */
.aw-blog-related {
    background: var(--aw-bg);
    padding: 48px 0;
    margin-top: 40px;
}
.aw-blog-related .container-xxl { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.aw-blog-related__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--aw-ink);
    margin-bottom: 24px;
}
.aw-blog-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.aw-blog-related__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--aw-card);
    border-radius: var(--aw-radius);
    padding: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--aw-shadow-xs);
    transition: box-shadow .15s, transform .15s;
}
.aw-blog-related__card:hover { box-shadow: var(--aw-shadow); transform: translateY(-2px); }
.aw-blog-related__emoji { font-size: 2rem; flex-shrink: 0; }
.aw-blog-related__name { font-size: .88rem; font-weight: 600; color: var(--aw-ink); line-height: 1.4; }
.aw-blog-related__meta { font-size: .75rem; color: var(--aw-muted2); margin-top: 4px; }

/* ══ Alerta de Preço ════════════════════════════════════════════════════════ */
.aw-pd-action-btn--alert {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff !important;
    border: none;
}
.aw-pd-action-btn--alert:hover { background: linear-gradient(135deg, #d97706, #b45309); color: #fff !important; }
.aw-pd-action-btn--alert i { color: #fff; }

/* Modal overlay */
.aw-alert-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: awFadeIn .18s ease;
}
.aw-alert-modal[hidden] { display: none; }
@keyframes awFadeIn { from { opacity: 0 } to { opacity: 1 } }
.aw-alert-modal__box {
    background: var(--aw-card);
    border-radius: 20px;
    padding: 36px 32px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,.25);
    animation: awSlideUp .22s cubic-bezier(.22,.61,.36,1);
}
@keyframes awSlideUp { from { transform: translateY(24px); opacity: 0 } to { transform: none; opacity: 1 } }
.aw-alert-modal__close {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--aw-bg);
    border: none;
    border-radius: 50%;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--aw-muted);
    font-size: 1rem;
    transition: background .15s;
}
.aw-alert-modal__close:hover { background: var(--aw-border); }
.aw-alert-modal__icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 12px;
    color: #f59e0b;
}
.aw-alert-modal__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--aw-ink);
    text-align: center;
    margin-bottom: 8px;
}
.aw-alert-modal__desc {
    font-size: .9rem;
    color: var(--aw-muted);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}
.aw-alert-form { display: flex; flex-direction: column; gap: 12px; }
.aw-alert-form__row { display: flex; flex-direction: column; gap: 4px; }
.aw-alert-form__label { font-size: .8rem; font-weight: 600; color: var(--aw-muted); }
.aw-alert-form__input {
    padding: 10px 14px;
    border: 1.5px solid var(--aw-border);
    border-radius: 10px;
    font-size: .95rem;
    background: var(--aw-bg);
    color: var(--aw-ink);
    outline: none;
    transition: border-color .15s;
    width: 100%;
}
.aw-alert-form__input:focus { border-color: var(--aw-blue); }
.aw-alert-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .15s;
    margin-top: 4px;
}
.aw-alert-form__submit:hover { opacity: .9; }
.aw-alert-form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 16px 0;
    color: var(--aw-green);
}
.aw-alert-form__success i { font-size: 2.5rem; }
.aw-alert-form__success strong { font-size: 1.1rem; color: var(--aw-ink); }
.aw-alert-form__success span { font-size: .88rem; color: var(--aw-muted); }
