:root {
    --primary: #ef4444;
    --primary-dark: #dc2626;
    --secondary: #111827;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --background: #ffffff;
    --soft: #f8fafc;
    --success: #15803d;
    --warning: #b45309;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

/* =========================================================
   CABEÇALHO
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.header-content {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 800;
}

.brand-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), #fb923c);
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.24);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

/* =========================================================
   BOTÕES
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s ease;
}

.button-primary {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.25);
}

.button-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.button-product {
    width: 100%;
    min-height: 44px;
    margin-top: 18px;
    color: var(--primary);
    border: 1px solid #fecaca;
    background: #fff7f7;
}

.button-product:hover {
    color: #ffffff;
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-2px);
}

/* =========================================================
   HERO DA PÁGINA INICIAL
========================================================= */

.hero {
    padding: 90px 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(239, 68, 68, 0.16),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #fff7ed 0%,
            #ffffff 54%,
            #fef2f2 100%
        );
}

.hero-content {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 64px;
}

.hero-text {
    max-width: 720px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    color: var(--secondary);
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.hero-text > p {
    max-width: 650px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 18px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(145deg, #111827, #272f3f);
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.18);
}

.hero-card::after {
    content: '%';
    position: absolute;
    right: -18px;
    bottom: -70px;
    color: rgba(255, 255, 255, 0.05);
    font-size: 220px;
    font-weight: 800;
}

.hero-card-label {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 28px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: #fca5a5;
    font-size: 12px;
    font-weight: 700;
}

.hero-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 1.2;
}

.hero-card p {
    position: relative;
    z-index: 1;
    color: #cbd5e1;
}

/* =========================================================
   SEÇÕES
========================================================= */

.section {
    padding: 84px 0;
}

.section-soft {
    background: var(--soft);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 36px;
}

.section-heading h2 {
    color: var(--secondary);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-heading > p {
    max-width: 440px;
    color: var(--muted);
}

/* =========================================================
   CATEGORIAS DA PÁGINA INICIAL
========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    transition: 0.2s ease;
}

.category-card:hover {
    border-color: #fecaca;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 14px;
    color: var(--primary);
    background: #fef2f2;
    font-weight: 800;
}

.category-card h3 {
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 17px;
}

.category-card p {
    color: var(--muted);
    font-size: 14px;
}

.category-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

/* =========================================================
   PÁGINA DA CATEGORIA
========================================================= */

.category-hero {
    padding: 54px 0 76px;
    background:
        radial-gradient(
            circle at top right,
            rgba(251, 146, 60, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(239, 68, 68, 0.12),
            transparent 30%
        ),
        linear-gradient(135deg, #fff7ed, #ffffff);
}

.category-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 60px;
}

.category-hero-content h1 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.category-hero-content p {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
}

.category-hero-icon {
    width: 170px;
    height: 170px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(239, 68, 68, 0.12);
    border-radius: 42px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.1);
    font-size: 88px;
    font-weight: 800;
}

.category-empty-state {
    grid-column: 1 / -1;
}

.category-empty-state .button {
    margin-top: 22px;
}

/* =========================================================
   PÁGINA DE PESQUISA
========================================================= */

.search-hero {
    padding: 54px 0 76px;
    background:
        radial-gradient(
            circle at top left,
            rgba(239, 68, 68, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(251, 146, 60, 0.14),
            transparent 30%
        ),
        linear-gradient(135deg, #fff7ed, #ffffff);
}

.search-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    align-items: end;
    gap: 64px;
}

.search-hero-content h1 {
    margin-bottom: 18px;
    color: var(--secondary);
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.search-hero-content p {
    max-width: 580px;
    color: var(--muted);
    font-size: 18px;
}

.search-form {
    padding: 28px;
    border: 1px solid rgba(239, 68, 68, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.1);
}

.search-label {
    display: block;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
}

.search-form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.search-form-row input {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    color: var(--text);
    background: #ffffff;
    transition: 0.2s ease;
}

.search-form-row input::placeholder {
    color: #9ca3af;
}

.search-form-row input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.search-form-row .button {
    white-space: nowrap;
}

.search-empty-state {
    grid-column: 1 / -1;
}

.search-empty-state .button {
    margin-top: 22px;
}

/* =========================================================
   PRODUTOS
========================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
    transition: 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(17, 24, 39, 0.1);
}

.product-image-link {
    display: block;
}

.product-image-placeholder {
    min-height: 210px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.product-image-placeholder img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    padding: 18px;
    background: #ffffff;
    transition: transform 0.25s ease;
}

.product-card:hover .product-image-placeholder img {
    transform: scale(1.04);
}

.product-image-placeholder span {
    color: #9ca3af;
    font-size: 64px;
    font-weight: 800;
}

.product-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.product-category {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card h3 {
    min-height: 52px;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 17px;
    line-height: 1.45;
}

.product-card h3 a {
    transition: color 0.2s ease;
}

.product-card h3 a:hover {
    color: var(--primary);
}

.product-brand {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
}

.price-box {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.old-price {
    display: block;
    margin-bottom: 2px;
    color: #9ca3af;
    font-size: 13px;
    text-decoration: line-through;
}

.current-price {
    display: block;
    color: var(--success);
    font-size: 24px;
}

.price-unavailable {
    display: block;
    color: var(--warning);
    font-size: 16px;
}

.store-name {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   LOJAS
========================================================= */

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.store-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
}

.store-color {
    width: 12px;
    height: 54px;
    flex: 0 0 12px;
    border-radius: 999px;
}

.store-card h3 {
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 16px;
}

.status {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.status-active {
    color: #166534;
    background: #dcfce7;
}

.status-pending {
    color: #92400e;
    background: #fef3c7;
}

/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    padding: 76px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.eyebrow-light {
    color: #fca5a5;
}

.newsletter h2 {
    margin-bottom: 12px;
    font-size: clamp(30px, 4vw, 44px);
}

.newsletter p {
    color: #cbd5e1;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.newsletter-form input,
.newsletter-form button {
    min-height: 52px;
    border: 0;
    border-radius: 12px;
}

.newsletter-form input {
    padding: 0 18px;
    color: var(--text);
    background: #ffffff;
}

.newsletter-form button {
    padding: 0 22px;
    color: #ffffff;
    background: var(--primary);
    font-weight: 700;
}

.newsletter-form input:disabled,
.newsletter-form button:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 13px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb strong {
    color: var(--secondary);
}

/* =========================================================
   PÁGINA DE DETALHES DO PRODUTO
========================================================= */

.product-detail {
    padding: 54px 0 84px;
    background:
        radial-gradient(
            circle at top right,
            rgba(239, 68, 68, 0.08),
            transparent 30%
        ),
        #ffffff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: center;
}

.product-detail-image {
    min-height: 500px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: linear-gradient(145deg, #f8fafc, #e5e7eb);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    padding: 24px;
    background: #ffffff;
}

.product-detail-placeholder {
    width: 180px;
    height: 180px;
    display: grid;
    place-items: center;
    border-radius: 42px;
    color: #9ca3af;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
    font-size: 92px;
    font-weight: 800;
}

.product-detail-content h1 {
    max-width: 720px;
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.product-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 14px;
    flex-wrap: wrap;
}

.product-meta strong {
    color: var(--secondary);
}

.product-description {
    max-width: 720px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 17px;
}

.best-price-box,
.validation-box {
    max-width: 520px;
    padding: 28px;
    border-radius: 20px;
}

.best-price-box {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
}

.best-price-label {
    display: block;
    margin-bottom: 12px;
    color: #166534;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.best-price-value {
    display: block;
    color: var(--success);
    font-size: 38px;
    line-height: 1.1;
}

.validation-box {
    border: 1px solid #fde68a;
    background: #fffbeb;
}

.validation-box strong {
    display: block;
    margin-bottom: 8px;
    color: #92400e;
    font-size: 20px;
}

.validation-box p {
    color: #b45309;
}

/* =========================================================
   LISTA DE PREÇOS
========================================================= */

.price-list {
    display: grid;
    gap: 16px;
}

.price-list-item {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 30px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
}

.price-store {
    display: flex;
    align-items: center;
    gap: 14px;
}

.price-store strong {
    display: block;
    margin-bottom: 4px;
    color: var(--secondary);
}

.price-store span {
    color: var(--muted);
    font-size: 13px;
}

.price-list-value {
    min-width: 150px;
    text-align: right;
}

.price-list-value strong {
    display: block;
    color: var(--success);
    font-size: 24px;
}

/* =========================================================
   ESTADOS VAZIOS
========================================================= */

.empty-state {
    padding: 50px 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    text-align: center;
    background: #ffffff;
}

.empty-state h3 {
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 22px;
}

.empty-state p {
    color: var(--muted);
}

.empty-message {
    color: var(--muted);
}

/* =========================================================
   INFORMAÇÕES DO PRODUTO
========================================================= */

.product-information {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
}

.product-information h2 {
    margin-bottom: 28px;
    color: var(--secondary);
    font-size: 30px;
}

.product-information-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-information-grid > div {
    padding: 20px;
    border-radius: 14px;
    background: var(--soft);
}

.product-information-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-information-grid strong {
    color: var(--secondary);
    font-size: 15px;
}

/* =========================================================
   PAGINAÇÃO
========================================================= */

.pagination-wrapper {
    margin-top: 44px;
}

.pagination-wrapper nav {
    display: flex;
    justify-content: center;
}

.pagination-wrapper nav > div:first-child {
    display: none;
}

.pagination-wrapper nav > div:last-child {
    width: 100%;
}

.pagination-wrapper nav > div:last-child > div {
    display: flex;
    justify-content: center;
}

.pagination-wrapper span,
.pagination-wrapper a {
    border-color: var(--border) !important;
}

.pagination-wrapper a:hover {
    color: var(--primary);
}

.pagination-wrapper span[aria-current="page"] span {
    color: #ffffff !important;
    border-color: var(--primary) !important;
    background: var(--primary) !important;
}

/* =========================================================
   RODAPÉ
========================================================= */

.site-footer {
    padding: 42px 0;
    border-top: 1px solid var(--border);
    background: #ffffff;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-content strong {
    display: block;
    margin-bottom: 6px;
    color: var(--secondary);
}

.footer-content p {
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1024px) {
    .hero-content,
    .newsletter-content,
    .search-hero-content {
        grid-template-columns: 1fr;
    }

    .search-form {
        max-width: 760px;
    }

    .category-grid,
    .product-grid,
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .category-hero-content {
        gap: 34px;
    }

    .category-hero-icon {
        width: 130px;
        height: 130px;
        border-radius: 32px;
        font-size: 68px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .product-detail-image {
        min-height: 380px;
    }

    .price-list-item {
        grid-template-columns: 1fr auto;
    }

    .price-list-item .button {
        grid-column: 1 / -1;
    }

    .product-information-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .header-content {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero {
        padding: 64px 0;
    }

    .hero-content {
        gap: 36px;
    }

    .hero-card {
        padding: 28px;
    }

    .section {
        padding: 64px 0;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 14px;
    }

    .category-grid,
    .product-grid,
    .store-grid {
        grid-template-columns: 1fr;
    }

    .category-hero,
    .search-hero {
        padding: 38px 0 58px;
    }

    .category-hero-content {
        grid-template-columns: 1fr;
    }

    .category-hero-icon {
        width: 110px;
        height: 110px;
        border-radius: 28px;
        font-size: 56px;
    }

    .search-hero-content {
        gap: 36px;
    }

    .search-form {
        padding: 22px;
    }

    .search-form-row {
        grid-template-columns: 1fr;
    }

    .search-form-row .button {
        width: 100%;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .footer-content {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .product-detail {
        padding-top: 34px;
    }

    .product-detail-image {
        min-height: 300px;
    }

    .product-detail-placeholder {
        width: 130px;
        height: 130px;
        font-size: 68px;
    }

    .price-list-item {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .price-list-value {
        text-align: left;
    }

    .product-information-grid {
        grid-template-columns: 1fr;
    }

    .product-information {
        padding: 24px;
    }
}

/* =========================================================
   CARDS DE OFERTAS (HOME)
========================================================= */
.product-card-image-area{position:relative}
.product-badges{position:absolute;top:14px;left:14px;z-index:5;display:flex;gap:8px;flex-wrap:wrap}
.product-badge{display:inline-flex;align-items:center;justify-content:center;padding:6px 10px;border-radius:999px;color:#fff;font-size:11px;font-weight:800}
.product-badge-offer{background:#ef4444}
.product-badge-discount{background:#15803d}
.price-label{display:block;margin:8px 0 4px;color:#6b7280;font-size:12px;font-weight:700;text-transform:uppercase}
.savings-value{display:block;margin-top:10px;color:#15803d;font-size:13px;font-weight:700}


/* =========================================================
   DESTAQUE DA MELHOR OFERTA NA PÁGINA DO PRODUTO
========================================================= */

.best-price-box-featured {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid #86efac;
    background:
        linear-gradient(
            135deg,
            rgba(240, 253, 244, 0.98),
            rgba(220, 252, 231, 0.92)
        );
    box-shadow: 0 18px 42px rgba(21, 128, 61, 0.1);
}

.best-price-box-featured::after {
    content: '%';
    position: absolute;
    right: -14px;
    bottom: -58px;
    color: rgba(21, 128, 61, 0.05);
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
}

.best-price-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.best-price-badge,
.best-price-discount,
.price-best-badge,
.price-list-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.best-price-badge {
    padding: 8px 12px;
    color: #ffffff;
    background: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.best-price-discount {
    padding: 8px 11px;
    color: #ffffff;
    background: var(--primary);
}

.best-price-box-featured .best-price-label,
.best-price-box-featured .best-price-old-value,
.best-price-box-featured .best-price-value,
.best-price-box-featured .best-price-store,
.best-price-box-featured .best-price-savings,
.best-price-box-featured .best-price-button {
    position: relative;
    z-index: 1;
}

.best-price-old-value {
    margin-bottom: 2px;
}

.best-price-store {
    margin-top: 8px;
}

.best-price-savings {
    display: block;
    margin-top: 12px;
    color: #166534;
    font-size: 14px;
    font-weight: 800;
}

.best-price-button {
    width: 100%;
    margin-top: 22px;
}

/* =========================================================
   LISTA PROFISSIONAL DE PREÇOS
========================================================= */

.price-list-item-best {
    border-color: #86efac;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 1),
            rgba(240, 253, 244, 0.86)
        );
    box-shadow: 0 16px 34px rgba(21, 128, 61, 0.08);
}

.price-store-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-best-badge {
    margin-bottom: 8px;
    padding: 6px 9px;
    color: #166534;
    background: #dcfce7;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-list-discount {
    margin-bottom: 5px;
    padding: 5px 8px;
    color: #ffffff;
    background: var(--primary);
}

.price-list-savings {
    display: block;
    margin-top: 5px;
    color: #166534;
    font-size: 12px;
    font-weight: 800;
}

.price-store-button {
    min-width: 150px;
    white-space: nowrap;
}

.button-disabled {
    min-width: 150px;
    color: #9ca3af;
    background: #f3f4f6;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .price-store-button,
    .button-disabled {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .best-price-box-featured {
        padding: 24px;
    }

    .best-price-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .price-list-value {
        width: 100%;
    }
}

/* =========================================================
   REFINAMENTO VISUAL GLOBAL V1
========================================================= */

::selection {
    color: #ffffff;
    background: var(--primary);
}

a,
button,
input {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(239, 68, 68, 0.22);
    outline-offset: 3px;
}

.button {
    letter-spacing: -0.01em;
}

.section-heading h2 {
    text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   HOME V2 — RITMO GLOBAL
========================================================= */

@media (min-width: 901px) {
    .section-heading {
        margin-bottom: 30px;
    }
}

/* =========================================================
   PRODUTO — REFINAMENTO VISUAL V1
   Hierarquia de conversao e leitura
========================================================= */

.product-detail {
    padding: 46px 0 64px;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(239, 68, 68, 0.08),
            transparent 28rem
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffafa 100%
        );
}

.product-detail .breadcrumb {
    margin-bottom: 28px;
}

.product-detail-grid {
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(42px, 6vw, 72px);
    align-items: center;
}

.product-detail-image {
    min-height: 440px;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 50% 42%,
            #ffffff,
            #f1f5f9 78%
        );
    box-shadow: inset 0 0 0 1px rgba(229, 231, 235, 0.7);
}

.product-detail-content h1 {
    margin-bottom: 15px;
    font-size: clamp(34px, 4.5vw, 52px);
}

.product-detail-content .product-meta {
    gap: 14px 22px;
    margin-bottom: 18px;
    font-size: 12px;
}

.product-description {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.7;
}

.best-price-box-featured {
    max-width: 560px;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(21, 128, 61, 0.11);
}

.best-price-box-featured .best-price-value {
    font-size: clamp(34px, 4vw, 44px);
    letter-spacing: -0.045em;
}

.best-price-store {
    font-size: 12px;
}

.best-price-savings {
    margin-top: 7px;
    font-size: 12px;
}

.best-price-button {
    min-height: 48px;
    margin-top: 18px;
}

.product-best-price-note {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 10px;
    color: #4b7a59;
    font-size: 9px;
    line-height: 1.55;
    text-align: center;
}

.product-prices-section {
    padding: 54px 0 60px !important;
    background: #f8fafc;
}

.product-prices-panel {
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.075);
}

.product-prices-header {
    padding: 20px 22px !important;
}

.product-prices-heading h2 {
    font-size: 25px !important;
}

.product-prices-row-best {
    background:
        linear-gradient(
            90deg,
            rgba(240, 253, 244, 0.95),
            rgba(255, 255, 255, 1)
        ) !important;
}

.deal-analysis-section {
    padding: 22px 0 44px !important;
    background: #f8fafc !important;
}

.deal-analysis-card {
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.055) !important;
}

.deal-analysis-content h2 {
    font-size: 21px !important;
}

.price-history-section {
    padding-top: 58px !important;
}

.price-alert-section,
.product-reviews-section,
.related-offers-section,
.related-products-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.product-review-score-label {
    letter-spacing: 0.1em;
}

.product-review-score-count {
    max-width: 170px;
    margin-left: auto !important;
    margin-right: auto;
    line-height: 1.5;
}

.related-products-grid-single,
.related-products-grid-pair {
    justify-content: start;
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        min-height: 360px;
    }
}

@media (max-width: 620px) {
    .product-detail {
        padding-top: 30px;
        padding-bottom: 48px;
    }

    .product-detail-image {
        min-height: 300px;
    }

    .best-price-box-featured {
        padding: 21px;
    }

    .product-prices-section {
        padding: 42px 0 48px !important;
    }
}


/* =========================================================
   CATEGORIA — REFINAMENTO VISUAL V1
   Layout adaptativo, cards e fallback de imagem
========================================================= */

.category-hero {
    padding: 50px 0 66px;
}

.category-hero .breadcrumb {
    margin-bottom: 28px;
}

.category-hero-content {
    gap: clamp(36px, 6vw, 72px);
}

.category-hero-content h1 {
    margin-bottom: 15px;
    font-size: clamp(42px, 5.4vw, 62px);
}

.category-hero-content p {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.75;
}

.category-hero-icon {
    width: 146px;
    height: 146px;
    border-radius: 36px;
    font-size: 72px;
    box-shadow: 0 22px 52px rgba(17, 24, 39, 0.085);
}

.category-products-section {
    padding: 64px 0 72px;
}

.category-products-section .section-heading {
    align-items: center;
    margin-bottom: 26px;
}

.category-products-section .section-heading h2 {
    font-size: clamp(30px, 3.6vw, 40px);
}

.category-products-count {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    white-space: nowrap;
}

.category-products-count strong {
    display: grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    color: var(--primary);
    background: #fef2f2;
    font-size: 11px;
    font-weight: 900;
}

.category-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-product-grid-single {
    grid-template-columns: minmax(0, 300px);
}

.category-product-grid-pair {
    grid-template-columns: repeat(2, minmax(0, 300px));
}

.category-product-grid-triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 920px;
}

.category-product-card {
    min-width: 0;
    border-radius: 17px;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.04);
}

.category-product-card:hover {
    border-color: #fecdd3;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.085);
}

.category-product-card .product-image-placeholder {
    position: relative;
    min-height: 220px;
    height: 220px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 40%,
            #ffffff,
            #eef2f7 82%
        );
}

.category-product-card .category-image-frame {
    display: grid;
    place-items: center;
}

.category-product-card .category-image-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    color: #a5adba;
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    background:
        radial-gradient(
            circle at 50% 40%,
            #ffffff,
            #eef2f7 82%
        );
}

.category-product-card .product-image-placeholder img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 20px;
    background: #ffffff;
}

.category-product-card .product-card-content {
    padding: 18px;
}

.category-product-card .product-category {
    margin-bottom: 7px;
    font-size: 9px;
    letter-spacing: 0.08em;
}

.category-product-card h3 {
    min-height: 44px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.42;
}

.category-product-card .product-brand {
    min-height: 20px;
    margin-bottom: 13px;
    font-size: 11px;
}

.category-product-card .price-box {
    padding-top: 13px;
}

.category-product-card .old-price {
    font-size: 10px;
}

.category-product-card .price-label {
    margin-top: 6px;
    margin-bottom: 3px;
    font-size: 8px;
    letter-spacing: 0.06em;
}

.category-product-card .current-price {
    font-size: 20px;
    line-height: 1.15;
}

.category-product-card .price-unavailable {
    font-size: 15px;
}

.category-product-card .store-name,
.category-product-card .savings-value {
    font-size: 9px;
    line-height: 1.5;
}

.category-product-card .button-product {
    min-height: 40px;
    margin-top: 13px;
    border-radius: 9px;
    font-size: 10px;
}

@media (max-width: 1024px) {
    .category-product-grid,
    .category-product-grid-triple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }

    .category-product-grid-single {
        grid-template-columns: minmax(0, 320px);
    }

    .category-product-grid-pair {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .category-hero {
        padding: 36px 0 50px;
    }

    .category-hero-content {
        gap: 26px;
    }

    .category-hero-icon {
        width: 96px;
        height: 96px;
        border-radius: 24px;
        font-size: 48px;
    }

    .category-products-section {
        padding: 48px 0 56px;
    }

    .category-products-section .section-heading {
        align-items: flex-start;
    }

    .category-products-count {
        min-height: 34px;
    }

    .category-product-grid,
    .category-product-grid-single,
    .category-product-grid-pair,
    .category-product-grid-triple {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .category-product-card .product-image-placeholder,
    .category-product-card .product-image-placeholder img {
        height: 260px;
        min-height: 260px;
    }
}


/* =========================================================
   PESQUISA — REFINAMENTO VISUAL V1
========================================================= */

.search-results-section {
    padding: 64px 0 72px;
}

.search-results-section .section-heading {
    align-items: center;
    margin-bottom: 26px;
}

.search-results-section .section-heading h2 {
    font-size: clamp(30px, 3.6vw, 40px);
}

.search-results-count {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    white-space: nowrap;
}

.search-results-count strong {
    display: grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    color: var(--primary);
    background: #fef2f2;
    font-size: 11px;
    font-weight: 900;
}

.search-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.search-product-grid-single {
    grid-template-columns: minmax(0, 300px);
}

.search-product-grid-pair {
    grid-template-columns: repeat(2, minmax(0, 300px));
}

.search-product-grid-triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 920px;
}

.search-product-card {
    min-width: 0;
    border-radius: 17px;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.04);
}

.search-product-card:hover {
    border-color: #fecdd3;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.085);
}

.search-product-card .product-image-placeholder {
    position: relative;
    min-height: 220px;
    height: 220px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 40%, #ffffff, #eef2f7 82%);
}

.search-product-card .search-image-frame {
    display: grid;
    place-items: center;
}

.search-product-card .search-image-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    color: #a5adba;
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    background:
        radial-gradient(circle at 50% 40%, #ffffff, #eef2f7 82%);
}

.search-product-card .product-image-placeholder img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 20px;
    background: #ffffff;
}

.search-product-card .product-card-content {
    padding: 18px;
}

.search-product-card .product-category {
    margin-bottom: 7px;
    font-size: 9px;
    letter-spacing: 0.08em;
}

.search-product-card h3 {
    min-height: 44px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.42;
}

.search-product-card .product-brand {
    min-height: 20px;
    margin-bottom: 13px;
    font-size: 11px;
}

.search-product-card .price-box {
    padding-top: 13px;
}

.search-product-card .old-price {
    font-size: 10px;
}

.search-product-card .price-label {
    margin-top: 6px;
    margin-bottom: 3px;
    font-size: 8px;
    letter-spacing: 0.06em;
}

.search-product-card .current-price {
    font-size: 20px;
    line-height: 1.15;
}

.search-product-card .price-unavailable {
    font-size: 15px;
}

.search-product-card .store-name,
.search-product-card .savings-value {
    font-size: 9px;
    line-height: 1.5;
}

.search-product-card .button-product {
    min-height: 40px;
    margin-top: 13px;
    border-radius: 9px;
    font-size: 10px;
}

@media (max-width: 1024px) {
    .search-product-grid,
    .search-product-grid-triple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }

    .search-product-grid-single {
        grid-template-columns: minmax(0, 320px);
    }

    .search-product-grid-pair {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .search-results-section {
        padding: 48px 0 56px;
    }

    .search-results-section .section-heading {
        align-items: flex-start;
    }

    .search-results-count {
        min-height: 34px;
    }

    .search-product-grid,
    .search-product-grid-single,
    .search-product-grid-pair,
    .search-product-grid-triple {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .search-product-card .product-image-placeholder,
    .search-product-card .product-image-placeholder img {
        height: 260px;
        min-height: 260px;
    }
}


/* =========================================================
   OFERTAS PÚBLICAS — V1
========================================================= */

.offers-public-hero {
    padding: 48px 0 64px;
    background:
        radial-gradient(
            circle at 86% 20%,
            rgba(255, 63, 75, 0.10),
            transparent 30%
        ),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border-bottom: 1px solid var(--border);
}

.offers-public-hero .breadcrumb {
    margin-bottom: 28px;
}

.offers-public-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 56px;
}

.offers-public-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: var(--primary);
    background: #fff1f2;
    font-size: 11px;
    font-weight: 800;
}

.offers-public-hero h1 {
    max-width: 760px;
    margin: 0 0 14px;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.offers-public-hero h1 span {
    color: var(--primary);
}

.offers-public-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.offers-public-hero-mark {
    display: grid;
    width: 146px;
    height: 146px;
    place-items: center;
    border-radius: 36px;
    color: var(--primary);
    background: #ffffff;
    box-shadow: 0 22px 52px rgba(17, 24, 39, 0.085);
    font-size: 68px;
    font-weight: 900;
}

.offers-public-section {
    padding: 64px 0 72px;
}

.offers-public-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.offers-public-toolbar h2 {
    margin: 4px 0 0;
    font-size: clamp(30px, 3.6vw, 40px);
}

.offers-public-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offers-public-count {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: #ffffff;
    font-size: 12px;
    white-space: nowrap;
}

.offers-public-count strong {
    display: grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    color: var(--primary);
    background: #fef2f2;
    font-size: 11px;
    font-weight: 900;
}

.offers-public-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offers-public-sort label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.offers-public-sort select {
    min-height: 40px;
    padding: 0 34px 0 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    background: #ffffff;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
}

.offers-public-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.offers-public-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.04);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.offers-public-card:hover {
    transform: translateY(-3px);
    border-color: #fecdd3;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.085);
}

.offers-public-image {
    position: relative;
    display: grid;
    height: 230px;
    overflow: hidden;
    place-items: center;
    background:
        radial-gradient(
            circle at 50% 40%,
            #ffffff,
            #eef2f7 82%
        );
}

.offers-public-image-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    color: #a5adba;
    font-size: 62px;
    font-weight: 900;
}

.offers-public-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 22px;
    object-fit: contain;
    background: #ffffff;
}

.offers-public-badges {
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.offers-public-discount,
.offers-public-featured {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
}

.offers-public-discount {
    color: #ffffff;
    background: var(--primary);
}

.offers-public-featured {
    color: #92400e;
    background: #fef3c7;
}

.offers-public-card-content {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 20px;
}

.offers-public-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 20px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.offers-public-meta strong {
    color: var(--text);
    font-size: 10px;
}

.offers-public-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.4;
}

.offers-public-description {
    min-height: 42px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.offers-public-price {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.offers-public-old-price {
    color: var(--muted);
    font-size: 11px;
    text-decoration: line-through;
}

.offers-public-price-label {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.offers-public-price strong {
    margin-top: 2px;
    color: var(--primary);
    font-size: 25px;
    line-height: 1.15;
}

.offers-public-benefits {
    display: flex;
    min-height: 48px;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
}

.offers-public-coupon {
    width: fit-content;
    padding: 4px 7px;
    border: 1px dashed #fda4af;
    border-radius: 7px;
    color: #9f1239;
    background: #fff1f2;
}

.offers-public-cta {
    width: 100%;
    min-height: 42px;
    margin-top: 14px;
    border-radius: 10px;
    font-size: 11px;
}

.offers-public-pagination {
    margin-top: 32px;
}

.offers-public-empty {
    max-width: 620px;
    margin: 0 auto;
    padding: 54px 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    background: #ffffff;
}

.offers-public-empty-icon {
    display: grid;
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 20px;
    color: var(--primary);
    background: #fff1f2;
    font-size: 34px;
    font-weight: 900;
}

.offers-public-empty h2 {
    margin: 0 0 8px;
}

.offers-public-empty p {
    max-width: 480px;
    margin: 0 auto 20px;
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .offers-public-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offers-public-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .offers-public-hero {
        padding: 36px 0 48px;
    }

    .offers-public-hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .offers-public-hero-mark {
        width: 96px;
        height: 96px;
        border-radius: 24px;
        font-size: 46px;
    }

    .offers-public-section {
        padding: 48px 0 56px;
    }

    .offers-public-toolbar-actions {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .offers-public-sort {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .offers-public-sort select {
        width: 100%;
    }

    .offers-public-grid {
        grid-template-columns: 1fr;
    }

    .offers-public-image {
        height: 260px;
    }
}



/* ==========================================================================
   Cupons públicos
   ========================================================================== */
.coupons-public-hero {
    padding: 56px 0 72px;
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 63, 75, .10), transparent 30%),
        linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
    border-bottom: 1px solid var(--border);
}
.coupons-public-hero .breadcrumb { margin-bottom: 28px; }
.coupons-public-hero-content { display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:center; gap:56px; }
.coupons-public-eyebrow { display:inline-flex; align-items:center; padding:8px 12px; border-radius:999px; background:#fff1f2; color:var(--site-primary,#ff3f4b); font-size:12px; font-weight:800; margin-bottom:18px; }
.coupons-public-hero h1 { max-width:720px; margin:0; color:var(--site-text,#111827); font-size:clamp(42px,5vw,64px); line-height:.98; letter-spacing:-.045em; }
.coupons-public-hero h1 span { color:var(--site-primary,#ff3f4b); }
.coupons-public-hero p { max-width:720px; margin:22px 0 0; color:var(--site-muted,#6b7280); font-size:17px; line-height:1.7; }
.coupons-public-hero-mark { display:grid; place-items:center; width:150px; height:150px; border-radius:34px; background:#fff; box-shadow:0 22px 55px rgba(15,23,42,.08); color:var(--site-primary,#ff3f4b); font-size:64px; font-weight:900; }
.coupons-public-section { padding-top:66px; padding-bottom:78px; }
.coupons-public-toolbar { display:flex; align-items:flex-end; justify-content:space-between; gap:28px; margin-bottom:30px; }
.coupons-public-toolbar h2 { margin:8px 0 0; font-size:36px; letter-spacing:-.035em; }
.coupons-public-toolbar-actions { display:flex; align-items:center; gap:14px; }
.coupons-public-count { display:flex; align-items:center; gap:9px; padding:10px 14px; border:1px solid var(--border); border-radius:999px; background:#fff; color:var(--site-muted,#6b7280); font-size:12px; }
.coupons-public-count strong { display:grid; place-items:center; min-width:24px; height:24px; padding:0 6px; border-radius:999px; background:#fff1f2; color:var(--site-primary,#ff3f4b); }
.coupons-public-sort { display:flex; align-items:center; gap:9px; color:var(--site-muted,#6b7280); font-size:12px; }
.coupons-public-sort select { min-height:44px; padding:0 38px 0 14px; border:1px solid var(--border); border-radius:12px; background:#fff; color:var(--site-text,#111827); font-weight:700; }
.coupons-public-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.coupons-public-card { overflow:hidden; display:flex; flex-direction:column; min-height:100%; border:1px solid var(--border); border-radius:18px; background:#fff; box-shadow:0 14px 35px rgba(15,23,42,.045); }
.coupons-public-card-top { display:flex; align-items:center; gap:12px; min-height:92px; padding:20px; background:linear-gradient(135deg,#fff7f7,#f8fafc); border-bottom:1px solid var(--border); }
.coupons-public-store-mark { display:grid; place-items:center; width:46px; height:46px; flex:0 0 46px; border-radius:13px; background:#fff; color:var(--site-primary,#ff3f4b); font-size:20px; font-weight:900; box-shadow:0 8px 20px rgba(15,23,42,.06); }
.coupons-public-meta { min-width:0; display:flex; flex-direction:column; gap:3px; }
.coupons-public-meta strong { color:var(--site-text,#111827); font-size:14px; }
.coupons-public-meta span { color:var(--site-muted,#6b7280); font-size:11px; }
.coupons-public-featured { margin-left:auto; padding:6px 8px; border-radius:999px; background:#ecfdf3; color:#07883d; font-size:10px; font-weight:800; }
.coupons-public-card-content { display:flex; flex:1; flex-direction:column; padding:22px; }
.coupons-public-benefit { align-self:flex-start; margin-bottom:10px; color:#07883d; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.04em; }
.coupons-public-card h3 { margin:0; color:var(--site-text,#111827); font-size:20px; line-height:1.25; letter-spacing:-.025em; }
.coupons-public-description { margin:12px 0 0; color:var(--site-muted,#6b7280); font-size:13px; line-height:1.6; }
.coupons-public-code { margin:20px 0 16px; padding:14px 16px; border:1px dashed rgba(255,63,75,.45); border-radius:13px; background:#fff7f7; }
.coupons-public-code span { display:block; margin-bottom:5px; color:var(--site-muted,#6b7280); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.coupons-public-code strong { color:var(--site-primary,#ff3f4b); font-size:20px; letter-spacing:.06em; }
.coupons-public-code-auto { border-style:solid; background:#f8fafc; }
.coupons-public-code-auto strong { color:var(--site-text,#111827); letter-spacing:0; }
.coupons-public-details { display:flex; flex-direction:column; gap:7px; margin-bottom:18px; color:var(--site-muted,#6b7280); font-size:11px; }
.coupons-public-details strong { color:var(--site-text,#111827); }
.coupons-public-cta { width:100%; margin-top:auto; text-align:center; }
.coupons-public-unavailable { margin-top:auto; padding:13px; border-radius:10px; background:#f8fafc; color:var(--site-muted,#6b7280); text-align:center; font-size:12px; font-weight:700; }
.coupons-public-pagination { margin-top:32px; }
.coupons-public-empty { max-width:620px; margin:18px auto 0; padding:54px 34px; border:1px solid var(--border); border-radius:18px; background:#fff; text-align:center; }
.coupons-public-empty-icon { display:grid; place-items:center; width:62px; height:62px; margin:0 auto 20px; border-radius:16px; background:#fff1f2; color:var(--site-primary,#ff3f4b); font-size:28px; font-weight:900; }
.coupons-public-empty h2 { margin:0; font-size:23px; }
.coupons-public-empty p { max-width:470px; margin:12px auto 22px; color:var(--site-muted,#6b7280); line-height:1.6; }
@media (max-width: 980px) { .coupons-public-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 760px) {
    .coupons-public-hero { padding:38px 0 52px; }
    .coupons-public-hero-content { grid-template-columns:1fr; gap:28px; }
    .coupons-public-hero-mark { width:92px; height:92px; border-radius:24px; font-size:42px; }
    .coupons-public-toolbar { align-items:flex-start; flex-direction:column; }
    .coupons-public-toolbar-actions { width:100%; align-items:flex-start; flex-direction:column; }
    .coupons-public-sort { width:100%; justify-content:space-between; }
    .coupons-public-sort select { flex:1; }
    .coupons-public-grid { grid-template-columns:1fr; }
}


/* =========================================================
   LOJAS PÚBLICAS — INDEX + SHOW
========================================================= */

.stores-public-hero,
.store-public-detail-hero {
    padding: 50px 0 68px;
    background:
        radial-gradient(circle at 90% 10%, rgba(239, 68, 68, 0.09), transparent 30rem),
        linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
}

.stores-public-heading {
    max-width: 820px;
}

.stores-public-heading h1,
.store-public-detail-content h1 {
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.stores-public-heading p,
.store-public-detail-content > p {
    max-width: 720px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.stores-public-section,
.store-public-section {
    padding: 64px 0 72px;
}

.stores-public-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.stores-public-toolbar h2 {
    color: var(--secondary);
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.stores-public-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: #ffffff;
    font-size: 12px;
}

.stores-public-count strong {
    color: var(--primary);
    font-size: 13px;
}

.stores-public-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stores-public-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.04);
    transition: 0.2s ease;
}

.stores-public-card:hover {
    border-color: #fecdd3;
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.085);
}

.stores-public-logo {
    min-height: 170px;
    display: grid;
    place-items: center;
    padding: 26px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.stores-public-logo img {
    width: 100%;
    height: 110px;
    object-fit: contain;
}

.stores-public-logo span,
.store-public-detail-logo span {
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 64px;
    font-weight: 900;
}

.stores-public-card-content {
    padding: 22px;
}

.stores-public-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.stores-public-card h2 {
    color: var(--secondary);
    font-size: 18px;
    line-height: 1.35;
}

.stores-public-card h2 a:hover {
    color: var(--primary);
}

.stores-public-rating {
    flex: 0 0 auto;
    color: #b45309;
    font-size: 12px;
    font-weight: 800;
}

.stores-public-card-content > p {
    min-height: 66px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.stores-public-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 18px;
}

.stores-public-metrics span {
    padding: 9px 6px;
    border-radius: 10px;
    color: var(--muted);
    background: var(--soft);
    font-size: 10px;
    text-align: center;
}

.stores-public-metrics strong {
    display: block;
    color: var(--secondary);
    font-size: 14px;
}

.stores-public-button {
    margin-top: 18px;
}

.stores-public-empty,
.store-public-empty-wide {
    grid-column: 1 / -1;
}

.store-public-detail-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: center;
    gap: clamp(36px, 6vw, 72px);
}

.store-public-detail-logo {
    width: 240px;
    height: 190px;
    display: grid;
    place-items: center;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.07);
}

.store-public-detail-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-public-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.store-public-official-link {
    display: inline-flex;
    margin-top: 20px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.store-public-official-link:hover {
    text-decoration: underline;
}

.store-public-price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.store-public-product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(17, 24, 39, 0.04);
}

.store-public-product-image {
    height: 190px;
    display: grid;
    place-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    background: #ffffff;
}

.store-public-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-public-product-image span {
    color: #9ca3af;
    font-size: 58px;
    font-weight: 900;
}

.store-public-product-content {
    padding: 20px;
}

.store-public-product-content h3 {
    min-height: 50px;
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: 16px;
    line-height: 1.45;
}

.store-public-product-content h3 a:hover {
    color: var(--primary);
}

.store-public-buy-button {
    width: 100%;
    min-height: 44px;
    margin-top: 18px;
}

.store-public-deal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.store-public-deal-card {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(17, 24, 39, 0.04);
}

.store-public-deal-label {
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--primary);
    background: #fef2f2;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.store-public-deal-card h3 {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 18px;
    line-height: 1.4;
}

.store-public-deal-card p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.store-public-deal-card .button {
    width: 100%;
    min-height: 44px;
    margin-top: auto;
}

.store-public-coupon-code {
    width: 100%;
    margin: 0 0 16px;
    padding: 11px 12px;
    border: 1px dashed #fca5a5;
    border-radius: 10px;
    color: var(--primary-dark);
    background: #fff7f7;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
    .stores-public-grid,
    .store-public-price-grid,
    .store-public-deal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .stores-public-hero,
    .store-public-detail-hero {
        padding: 38px 0 54px;
    }

    .stores-public-section,
    .store-public-section {
        padding: 52px 0 58px;
    }

    .stores-public-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .store-public-detail-grid {
        grid-template-columns: 1fr;
    }

    .store-public-detail-logo {
        width: 190px;
        height: 150px;
    }
}

@media (max-width: 620px) {
    .stores-public-grid,
    .store-public-price-grid,
    .store-public-deal-grid {
        grid-template-columns: 1fr;
    }

    .stores-public-card-content > p {
        min-height: auto;
    }
}
