/**
 * CSS do frontend do plugin Achadinhos WP
 * Design baseado no layout TechDeals/Mercado Livre
 * 
 * @author Dante Testa <https://dantetesta.com.br>
 * @since 1.0.0
 * @modified 2024-02-05 11:00:00
 */

:root {
    /* Cores de sombra refinadas (menos preto sujo, mais deep-blue/shadow) */
    --ach-shadow: 0 4px 6px -1px rgba(0, 0, 50, 0.05), 0 2px 4px -1px rgba(0, 0, 50, 0.03);
    --ach-shadow-hover: 0 20px 25px -5px rgba(0, 0, 50, 0.08), 0 10px 10px -5px rgba(0, 0, 50, 0.03);

    --ach-radius: 12px;
    /* Mais arredondado para look moderno */
    --ach-radius-lg: 16px;
    --ach-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Motion mais fluido */
    --ach-max-width: 1200px;

    /* Novas variáveis de fonte */
    --ach-font-display: 'Outfit', -apple-system, sans-serif;
    --ach-font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

.achadinhos-container {
    font-family: var(--ach-font-body);
    font-weight: 400;
    color: var(--ach-text);
    line-height: 1.6;
    background: var(--ach-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    /* Renderização de fonte nítida */
    -moz-osx-font-smoothing: grayscale;
}

.achadinhos-main {
    flex: 1;
    max-width: var(--ach-max-width);
    margin: 0 auto;
    padding: 35px 16px;
    width: 100%;
}

.achadinhos-footer {
    margin-top: auto;
}

.achadinhos-container * {
    box-sizing: border-box;
}

.achadinhos-container img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Remove gap inferior */
}

/* Tipografia Moderna e "Tight" para Títulos */
.achadinhos-container h1,
.achadinhos-container h2,
.achadinhos-container h3,
.achadinhos-section-title,
.achadinhos-card-title,
.achadinhos-banner-title,
.achadinhos-hero-title,
.achadinhos-hero-badge,
.achadinhos-card-price,
.achadinhos-card-badge,
.achadinhos-btn,
.achadinhos-hero-btn {
    font-family: var(--ach-font-display);
    letter-spacing: -0.02em;
    /* Tracking negativo moderno */
}

/* Motion Design: Entrada de Cards */
@keyframes achFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.achadinhos-card {
    animation: achFadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* Stagger Effect (Efeito Cascata) */
.achadinhos-products-grid .achadinhos-card:nth-child(1) {
    animation-delay: 50ms;
}

.achadinhos-products-grid .achadinhos-card:nth-child(2) {
    animation-delay: 100ms;
}

.achadinhos-products-grid .achadinhos-card:nth-child(3) {
    animation-delay: 150ms;
}

.achadinhos-products-grid .achadinhos-card:nth-child(4) {
    animation-delay: 200ms;
}

.achadinhos-products-grid .achadinhos-card:nth-child(n+5) {
    animation-delay: 250ms;
}

.achadinhos-container a {
    color: inherit;
    text-decoration: none;
}

.ach-layout {
    max-width: var(--ach-max-width);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .ach-layout {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .ach-layout {
        padding: 0 32px;
    }
}

/* ========================================
   HEADER
======================================== */
.achadinhos-header {
    background: var(--ach-header-bg);
    border-bottom: 1px solid var(--ach-primary-hover);
    z-index: 1000;
}

.achadinhos-header.is-sticky {
    position: sticky;
    top: 0;
}

/* Ajuste para WordPress Admin Bar - Apenas Desktop e quando Sticky */
@media screen and (min-width: 783px) {
    .admin-bar .achadinhos-header.is-sticky {
        top: 32px;
    }
}

.achadinhos-header-inner {
    max-width: var(--ach-max-width);
    margin: 0 auto;
    padding: 10px 16px;
    /* Balanceado: 10px em cima e embaixo */
    position: relative;
}

@media (min-width: 640px) {
    .achadinhos-header-inner {
        padding: 10px 24px;
    }
}

.achadinhos-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 35px;
    padding: 0;
    gap: 16px;
}

@media (min-width: 640px) {
    .achadinhos-header-row {
        gap: 32px;
    }
}

.achadinhos-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--ach-header-text);
    text-decoration: none;
}

.achadinhos-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--ach-bg-white);
    border-radius: 50%;
    box-shadow: var(--ach-shadow);
}

.achadinhos-logo-icon {
    font-size: 22px;
    color: var(--ach-primary);
}

.achadinhos-logo-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    display: none;
}

@media (min-width: 640px) {
    .achadinhos-logo-text {
        display: block;
    }
}

.achadinhos-logo-img {
    max-height: var(--ach-logo-size, 42px);
    width: auto;
}

.achadinhos-search {
    flex: 1;
    max-width: 600px;
}

.achadinhos-search-form {
    display: flex;
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius);
    box-shadow: var(--ach-shadow);
    overflow: hidden;
    height: 35px;
    /* Reduzido de 40px */
}

.achadinhos-search-input {
    flex: 1;
    border: none;
    padding: 0 16px;
    font-size: 14px;
    color: var(--ach-text);
    outline: none;
    min-width: 0;
}

.achadinhos-search-input::placeholder {
    color: var(--ach-text-muted);
}

.achadinhos-search-btn {
    background: var(--ach-bg);
    border: none;
    border-left: 1px solid var(--ach-border);
    padding: 0 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ach-text-muted);
    transition: background var(--ach-transition);
}

.achadinhos-search-btn:hover {
    background: var(--ach-border);
}

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

.achadinhos-header-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .achadinhos-header-nav {
        display: flex;
    }
}

.achadinhos-header-nav a {
    color: var(--ach-header-text);
    font-size: 14px;
    font-weight: 500;
    transition: opacity var(--ach-transition);
}

.achadinhos-header-nav a:hover {
    opacity: 0.7;
}

.achadinhos-dropdown {
    position: relative;
}

.achadinhos-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.achadinhos-dropdown-toggle .material-symbols-outlined {
    font-size: 18px;
    transition: transform var(--ach-transition);
}

.achadinhos-dropdown.is-open .achadinhos-dropdown-toggle .material-symbols-outlined {
    transform: rotate(180deg);
}

.achadinhos-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ach-transition), visibility var(--ach-transition);
    z-index: 100;
    margin-top: 2px;
}

.achadinhos-dropdown.is-open .achadinhos-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.achadinhos-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: var(--ach-text) !important;
    font-size: 14px;
    transition: background var(--ach-transition);
}

.achadinhos-dropdown-item:hover {
    background: var(--ach-bg);
    opacity: 1 !important;
}

.achadinhos-dropdown-count {
    font-size: 11px;
    color: var(--ach-text-muted);
    background: var(--ach-bg);
    padding: 2px 6px;
    border-radius: 10px;
}

.achadinhos-dropdown-divider {
    height: 1px;
    background: var(--ach-border);
    margin: 8px 0;
}

.achadinhos-dropdown-item--all {
    color: var(--ach-link) !important;
    font-weight: 600;
}

.achadinhos-dropdown--mega {
    position: relative;
}

.achadinhos-dropdown--mega .achadinhos-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    max-width: 90vw;
    padding: 12px 0 8px;
    margin-top: 2px;
    white-space: nowrap;
}

.achadinhos-mega-columns {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
}

.achadinhos-mega-col {
    min-width: 220px;
    max-width: 280px;
}

.achadinhos-mega-col+.achadinhos-mega-col {
    border-left: 1px solid var(--ach-border);
}

.achadinhos-mobile-search {
    padding-bottom: 12px;
    display: block;
}

@media (min-width: 640px) {
    .achadinhos-mobile-search {
        display: none;
    }
}

/* ========================================
   BREADCRUMB
======================================== */
.achadinhos-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 24px 0;
    font-size: 14px;
    color: var(--ach-breadcrumb);
}

@media (max-width: 768px) {
    .achadinhos-breadcrumb {
        display: none;
    }
}

.achadinhos-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ach-breadcrumb);
    transition: color var(--ach-transition);
}

.achadinhos-breadcrumb a:hover {
    color: var(--ach-link);
}

.achadinhos-breadcrumb a .material-symbols-outlined {
    font-size: 18px;
}

.achadinhos-breadcrumb-separator,
.achadinhos-breadcrumb-sep {
    font-size: 18px;
    color: var(--ach-breadcrumb);
    display: inline-flex;
    align-items: center;
}

.achadinhos-breadcrumb-current,
.achadinhos-breadcrumb span:last-child {
    color: var(--ach-breadcrumb-active);
    font-weight: 500;
}

/* Breadcrumb na Home - removido, usando spacer */
.achadinhos-home-spacer {
    height: 8px;
    background: inherit;
}

/* ========================================
   CARROSSEL DE CATEGORIAS
======================================== */
.ach-cat-carousel {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 0;
    /* Remove padding */
    position: relative;
    width: 100%;
    max-width: 100%;
}

.ach-cat-carousel__btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--ach-border);
    background: var(--ach-bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ach-transition);
    color: var(--ach-text-muted);
    padding: 0;
}

.ach-cat-carousel__btn:hover {
    background: var(--ach-primary);
    color: var(--ach-secondary);
    border-color: var(--ach-primary);
}

.ach-cat-carousel__btn .material-symbols-outlined {
    font-size: 20px;
}

.ach-cat-carousel__viewport {
    flex: 1;
    overflow: hidden;
}

.ach-cat-carousel__track {
    display: flex;
    gap: 16px;
    /* Aumentado gap */
    transition: transform 0.4s ease;
    will-change: transform;
    touch-action: pan-y;
    /* Permite scroll vertical, bloqueia horizontal para o JS */
    cursor: grab;
}

.ach-cat-carousel__track:active {
    cursor: grabbing;
}

.ach-cat-carousel__item {
    flex: 0 0 calc((100% - 56px) / 8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 10px 4px;
    border-radius: 8px;
    transition: background var(--ach-transition);
}

.ach-cat-carousel__item:hover {
    background: var(--ach-bg);
}

.ach-cat-carousel__circle {
    width: 96px;
    /* Aumentado 20% (era 78px) */
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ach-secondary);
    border: 2px solid var(--ach-bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.ach-cat-carousel__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ach-cat-carousel__sigla {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.ach-cat-carousel__name {
    font-size: 12px;
    font-weight: 500;
    color: var(--ach-text);
    text-align: center;
    line-height: 1.3;
    max-width: 90px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1024px) {
    .ach-cat-carousel__item {
        flex: 0 0 calc((100% - 42px) / 6);
    }
}

/* Ajuste 2.5 itens mobile - Dante Testa, https://dantetesta.com.br, 2026-02-06 07:46 BRT */
@media (max-width: 768px) {
    .ach-cat-carousel__item {
        flex: 0 0 32%;
        /* Ajustado para caber mais itens já que removemos padding */
        max-width: 32%;
        padding: 10px 2px;
        /* Reduzido padding lateral */
        scroll-snap-align: start;
    }

    .ach-cat-carousel__circle {
        width: 120px;
        height: 120px;
    }

    .ach-cat-carousel__name {
        font-size: 15px;
        max-width: 130px;
    }

    .ach-cat-carousel__viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 4px;
        /* Reduzido de 18px para 4px (-14px) para aproximar da borda */
        margin: 0;
    }

    .ach-cat-carousel__viewport::-webkit-scrollbar {
        display: none;
    }

    .ach-cat-carousel__track {
        gap: 12px;
        padding: 0 6px;
    }

    .ach-cat-carousel__btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .ach-cat-carousel__item {
        flex: 0 0 35%;
        max-width: 35%;
        padding: 8px 2px;
    }

    .ach-cat-carousel__circle {
        width: 100px;
        height: 100px;
    }

    .ach-cat-carousel__name {
        font-size: 14px;
        max-width: 120px;
    }

    .ach-cat-carousel__btn {
        width: 28px;
        height: 28px;
    }

    .ach-cat-carousel__btn .material-symbols-outlined {
        font-size: 16px;
    }
}

/* ========================================
   BARRA DE FILTROS E ORDENAÇÃO
======================================== */
.achadinhos-filters-bar {
    margin-bottom: 24px;
}

.achadinhos-filters-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.achadinhos-filters-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--ach-bg-white);
    border-radius: 0.75rem;
    padding: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.achadinhos-filter-search {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.achadinhos-filter-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--ach-text-muted);
    pointer-events: none;
    z-index: 1;
}

.achadinhos-filter-input {
    width: 100%;
    height: 42px;
    padding: 0 14px 0 44px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ach-text);
    background: var(--ach-bg);
    border: 1px solid transparent;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.achadinhos-filter-input:focus {
    outline: none;
    background: var(--ach-bg-white);
    border-color: var(--ach-primary);
    box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.15);
}

.achadinhos-filter-input::placeholder {
    color: var(--ach-text-muted);
}

.achadinhos-filter-select {
    appearance: none;
    height: 42px;
    padding: 0 32px 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ach-text);
    background-color: var(--ach-bg);
    border: 1px solid transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    max-width: 200px;
}

.achadinhos-filter-select:hover {
    background-color: var(--ach-border);
}

.achadinhos-filter-select:focus {
    outline: none;
    background-color: var(--ach-bg-white);
    border-color: var(--ach-primary);
    box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.15);
}

.achadinhos-filter-order {
    max-width: 170px;
}

.achadinhos-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 42px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ach-header-text) !important;
    background: var(--ach-primary) !important;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.achadinhos-filter-btn:hover {
    background: var(--ach-primary-hover) !important;
    transform: translateY(-1px);
}

.achadinhos-filter-btn .material-symbols-outlined {
    font-size: 18px;
}

/* Filtros ativos */
.achadinhos-filters-active {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.achadinhos-filters-active-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--ach-archive-title);
}

.achadinhos-filter-clear {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ach-discount);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 4px 10px;
    border-radius: 9999px;
    background: #fef2f2;
}

.achadinhos-filter-clear:hover {
    background: #fee2e2;
    color: var(--ach-discount);
}

/* Responsivo - Filtros */
@media (max-width: 768px) {
    .achadinhos-filters-row {
        flex-wrap: wrap;
    }

    .achadinhos-filter-search {
        flex: 1 1 100%;
    }

    .achadinhos-filter-select {
        flex: 1;
        max-width: none;
        min-width: 0;
    }

    .achadinhos-filter-order {
        max-width: none;
    }

    .achadinhos-filter-btn {
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .achadinhos-filters-row {
        flex-direction: column;
        padding: 12px;
    }

    .achadinhos-filter-search,
    .achadinhos-filter-select,
    .achadinhos-filter-order,
    .achadinhos-filter-btn {
        width: 100%;
        max-width: none;
    }
}

/* ========================================
   ARCHIVE HEADER
======================================== */
.achadinhos-archive-header {
    margin-bottom: 24px;
}

.achadinhos-archive-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ach-archive-title);
    margin: 16px 0 8px;
}

.achadinhos-archive-desc {
    font-size: 14px;
    color: var(--ach-archive-desc);
    margin: 0;
}

/* ========================================
   SINGLE PRODUCT TITLE
======================================== */
.achadinhos-single-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--ach-archive-title);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .achadinhos-single-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
}

/* ========================================
   TOP FILTER
======================================== */
.achadinhos-top-filter {
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius-lg);
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: var(--ach-shadow);
}

.achadinhos-filter-chip-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ach-text-muted);
    transition: color var(--ach-transition);
}

.achadinhos-filter-chip-remove:hover {
    color: var(--ach-discount);
}

.achadinhos-filter-chip-remove .material-symbols-outlined {
    font-size: 14px;
}

/* ========================================
   CATEGORIES GRID
======================================== */
.achadinhos-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .achadinhos-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .achadinhos-categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.achadinhos-category-card {
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius-lg);
    overflow: hidden;
    box-shadow: var(--ach-shadow);
    transition: box-shadow var(--ach-transition), transform var(--ach-transition);
}

.achadinhos-category-card:hover {
    box-shadow: var(--ach-shadow-hover);
    transform: translateY(-4px);
}

.achadinhos-category-card-image {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ach-secondary);
    overflow: hidden;
}

.achadinhos-category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achadinhos-category-card-image .material-symbols-outlined {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.7);
}

.achadinhos-category-card-body {
    padding: 16px;
    text-align: center;
}

.achadinhos-category-card-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ach-text);
    margin: 0 0 4px;
}

.achadinhos-category-card-body span {
    font-size: 13px;
    color: var(--ach-text-muted);
}

/* ========================================
   MAIN CONTENT
======================================== */
.achadinhos-main {
    max-width: var(--ach-max-width);
    margin: 0 auto;
    padding: 18px 16px 40px;
}

@media (min-width: 640px) {
    .achadinhos-main {
        padding: 18px 24px 40px;
    }
}

/* ========================================
   BANNER CAROUSEL
======================================== */
.achadinhos-banners {
    position: relative;
    border-radius: var(--ach-radius-lg);
    overflow: hidden;
    margin-top: -10px;
    margin-bottom: 24px;
    box-shadow: var(--ach-shadow);
}

.achadinhos-banners-track {
    display: flex;
    transition: transform 0.5s ease;
}

.achadinhos-banner-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.achadinhos-banner-slide a {
    display: block;
}

.achadinhos-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.achadinhos-banner-prev,
.achadinhos-banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ach-shadow);
    transition: background var(--ach-transition), opacity 0.3s ease;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.achadinhos-banners:hover .achadinhos-banner-prev,
.achadinhos-banners:hover .achadinhos-banner-next {
    opacity: 1;
    pointer-events: auto;
}

.achadinhos-banner-prev:hover,
.achadinhos-banner-next:hover {
    background: #fff;
}

.achadinhos-banner-prev {
    left: 16px;
}

.achadinhos-banner-next {
    right: 16px;
}

/* Ajuste banner mobile - Dante Testa, https://dantetesta.com.br, 2026-02-06 08:18 BRT */
@media (max-width: 768px) {

    .achadinhos-banner-prev,
    .achadinhos-banner-next {
        display: none;
    }
}

.achadinhos-banner-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.achadinhos-banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background var(--ach-transition);
}

.achadinhos-banner-dot.active {
    background: #fff;
}

.achadinhos-banner-slide--content {
    display: flex;
    align-items: center;
    aspect-ratio: 3 / 1;
    padding: 48px 56px 48px 80px;
    /* Mais espaço à esquerda para evitar sobreposição com seta */
    color: #fff;
}

.achadinhos-banner-content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.achadinhos-banner-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin: 0;
}

.achadinhos-banner-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.achadinhos-banner-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
    /* Centralizar conteúdo */
    gap: 8px;
    background: var(--ach-banner-btn-bg) !important;
    color: var(--ach-banner-btn-text) !important;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--ach-radius);
    text-decoration: none !important;
    transition: filter var(--ach-transition);
    align-self: flex-start;
    margin-top: 8px;
    line-height: 1 !important;
    /* Reset line-height */
}

/* Correção alinhamento ícone seta */
.achadinhos-banner-btn .material-symbols-outlined {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    /* Tamanho fixo equilibrado */
    height: auto;
    width: auto;
    margin-top: 1px;
    /* Micro-ajuste visual */
}

.achadinhos-banner-btn:hover,
.achadinhos-banner-btn:visited,
.achadinhos-banner-btn:focus {
    filter: brightness(0.85);
    color: var(--ach-banner-btn-text) !important;
}

@media (max-width: 767px) {
    .achadinhos-banner-slide--content {
        aspect-ratio: 3 / 2;
        padding: 32px 24px;
    }

    .achadinhos-banner-title {
        font-size: 1.5rem;
    }

    .achadinhos-banner-subtitle {
        font-size: 0.85rem;
    }

    .achadinhos-banner-btn {
        font-size: 13px;
        padding: 8px 20px;
    }
}

/* ========================================
   HERO DEFAULT (sem banners cadastrados)
======================================== */
.achadinhos-hero {
    position: relative;
    border-radius: var(--ach-radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--ach-shadow);
}

.achadinhos-hero-slide {
    position: relative;
    min-height: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    padding: 40px;
}

@media (min-width: 768px) {
    .achadinhos-hero-slide {
        min-height: 360px;
        padding: 60px;
    }
}

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

.achadinhos-hero-badge {
    display: inline-block;
    background: var(--ach-primary);
    color: var(--ach-secondary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.achadinhos-hero-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

@media (min-width: 768px) {
    .achadinhos-hero-title {
        font-size: 42px;
    }
}

.achadinhos-hero-title span {
    color: var(--ach-primary);
}

.achadinhos-hero-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px 0;
    max-width: 450px;
}

.achadinhos-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ach-primary);
    color: var(--ach-secondary);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--ach-radius);
    border: none;
    cursor: pointer;
    transition: background var(--ach-transition);
    text-decoration: none;
}

.achadinhos-hero-btn:hover {
    background: var(--ach-primary-hover);
}

.achadinhos-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background var(--ach-transition);
    backdrop-filter: blur(4px);
}

.achadinhos-hero-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.achadinhos-hero-nav--prev {
    left: 16px;
}

.achadinhos-hero-nav--next {
    right: 16px;
}

/* ========================================
   INFO STRIP
======================================== */
.achadinhos-info-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius);
    padding: 16px;
    margin-bottom: 32px;
    box-shadow: var(--ach-shadow);
}

@media (min-width: 768px) {
    .achadinhos-info-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

.achadinhos-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.achadinhos-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achadinhos-info-icon--blue {
    background: #e8f4fd;
    color: var(--ach-link);
}

.achadinhos-info-icon--green {
    background: #e6f7ed;
    color: var(--ach-price);
}

.achadinhos-info-icon--yellow {
    background: #fef9e6;
    color: #d4a700;
}

.achadinhos-info-icon--purple {
    background: #f3e8fd;
    color: #8b5cf6;
}

.achadinhos-info-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ach-text);
}

.achadinhos-info-text span {
    font-size: 11px;
    color: var(--ach-link);
}

/* ========================================
   SECTION HEADERS
======================================== */
.achadinhos-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.achadinhos-section-title {
    font-size: 22px;
    font-weight: 300;
    color: var(--ach-section-title);
    margin: 0;
}

.achadinhos-section-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--ach-section-link);
}

.achadinhos-section-link:hover {
    text-decoration: underline;
}

/* ========================================
   HIGHLIGHTS CAROUSEL
======================================== */
.achadinhos-highlights-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    /* Reduzido de 90px (~65%) */
    /* Aumentado para evitar corte */
}

.achadinhos-highlights-section .achadinhos-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.achadinhos-carousel-nav {
    display: flex;
    gap: 8px;
}

.achadinhos-highlights-section .achadinhos-carousel-nav {
    justify-content: flex-end;
}

.achadinhos-highlights-section .achadinhos-carousel-nav .achadinhos-carousel-btn {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
}

.achadinhos-carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--ach-bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ach-text);
    transition: all 0.2s ease;
}

.achadinhos-carousel-btn:hover {
    background: var(--ach-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.achadinhos-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.achadinhos-highlights-carousel {
    overflow: hidden;
    /* Revertido para hidden */
    position: relative;
    padding: 60px 20px;
    /* 20px permite sombra sem mostrar o próximo item (gap é 24px) */
    margin: -60px -20px;
}

.achadinhos-highlights-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    padding: 4px;
    margin: -4px;
}


.achadinhos-highlights-item {
    flex: 0 0 calc(25% - 18px);
    min-width: calc(25% - 18px);
}

.achadinhos-highlights-item .achadinhos-card {
    height: 100%;
}

@media (max-width: 1024px) {
    .achadinhos-highlights-item {
        flex: 0 0 calc(33.333% - 16px);
        min-width: calc(33.333% - 16px);
    }
}

/* Center mode mobile destaques - Dante Testa, https://dantetesta.com.br, 2026-02-06 08:54 BRT */
@media (max-width: 768px) {
    .achadinhos-highlights-section .achadinhos-carousel-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .achadinhos-highlights-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Padding generoso para não cortar sombras (top/bottom aumentados) */
        padding: 24px 6% 40px 6%;
        /* Margem negativa para compensar o padding visualmente */
        margin: -20px -4% -20px -4%;
    }

    .achadinhos-highlights-carousel::-webkit-scrollbar {
        display: none;
    }

    .achadinhos-highlights-track {
        gap: 14px;
        padding: 0;
        display: flex;
    }

    .achadinhos-highlights-item {
        flex: 0 0 42%;
        min-width: 42%;
        scroll-snap-align: center;
    }
}

/* ========================================
   PRODUCT GRID
======================================== */
.achadinhos-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

/* Grid/card mobile minimalista - Dante Testa, https://dantetesta.com.br, 2026-02-06 08:18 BRT */
@media (max-width: 360px) {
    .achadinhos-products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Mobile Mode - Estilo Mercado Livre - Dante Testa, https://dantetesta.com.br, 2026-02-06 16:28 BRT */
@media (max-width: 768px) {
    .achadinhos-products-grid {
        gap: 8px;
        row-gap: 24px;
        /* Aumentado espaçamento vertical (2x mais que o gap horizontal) */
        /* Gap mínimo estilo ML */
    }

    .achadinhos-card {
        border-radius: 5px !important;
        /* BorderRadius exato como solicitado */
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.06);
        /* Sombra sutil ML */
        overflow: hidden;
    }

    /* Imagem SEM padding - full width como ML */
    .achadinhos-card-image {
        background: #f8f8f8 !important;
        /* Fundo neutro claro */
        aspect-ratio: 1 / 1;
    }

    .achadinhos-card-image-link {
        padding: 0 !important;
        /* ZERO padding na imagem */
        display: block;
    }

    .achadinhos-card-image img {
        mix-blend-mode: darken;
        /* Melhor contraste no mobile */
    }

    /* Body compacto mas respirável */
    .achadinhos-card-body {
        padding: 8px !important;
        /* Padding mínimo estilo ML */
    }

    /* Título compacto */
    .achadinhos-card-title {
        font-size: 0.875rem;
        /* 14px */
        line-height: 1.3;
        margin: 0 0 4px 0 !important;
        /* Margem reduzida */
        font-weight: 400;
        /* Normal como ML */
        color: rgba(0, 0, 0, 0.9);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        overflow: hidden;
    }

    /* Preço destaque mas proporcional */
    .achadinhos-card-price-int {
        font-size: 1.25rem;
        /* 20px - equilibrado */
        font-weight: 400;
        letter-spacing: -0.3px;
    }

    .achadinhos-card-price-cents {
        font-size: 0.625rem;
        /* 10px */
        margin-top: 3px;
    }

    .achadinhos-card-price-currency {
        font-size: 0.75rem;
        /* 12px */
        margin-top: 3px;
        font-weight: 400;
    }

    /* Preço antigo menor */
    .achadinhos-card-old-price {
        font-size: 0.75rem;
        /* 12px */
    }

    /* Discount badge mais discreto */
    .achadinhos-card-discount-badge {
        font-size: 0.625rem;
        /* 10px */
        padding: 2px 6px;
    }

    .achadinhos-card-discount-row {
        gap: 6px;
        margin-bottom: 2px;
    }

    /* Badge de destaque compacto */
    .achadinhos-card-badge {
        top: 6px;
        left: 6px;
        padding: 2px 8px;
        font-size: 0.625rem;
        /* 10px */
        border-radius: 3px;
    }

    /* Botão favorito minimalista */
    .achadinhos-card-favorite {
        top: 6px;
        right: 6px;
        width: 28px;
        height: 28px;
        background: rgba(255, 255, 255, 0.95) !important;
        /* Fundo branco semi-opaco */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        opacity: 1 !important;
        /* Sempre visível no mobile */
    }

    .achadinhos-card-favorite .material-symbols-outlined {
        font-size: 18px;
    }

    /* Lojas disponíveis compacto */
    .achadinhos-card-stores {
        margin-top: 4px;
        font-size: 9px;
        /* Reduzido para caber em uma linha */
        white-space: nowrap;
        /* Evita quebra de linha */
        text-transform: none;
        /* Remove caixa alta para economizar espaço */
        font-weight: 600;
        letter-spacing: 0;
    }

    .achadinhos-card-stores .material-symbols-outlined {
        font-size: 14px;
    }

    /* Código oculto no mobile */
    .achadinhos-card-code {
        display: none;
    }

    /* Hover desabilitado no mobile */
    .achadinhos-card:hover {
        transform: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.06);
    }
}

@media (min-width: 768px) {
    .achadinhos-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .achadinhos-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   PRODUCT CARD - Premium Floating Style
======================================== */
.achadinhos-card {
    display: flex;
    flex-direction: column;
    background: var(--ach-bg-white);
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.achadinhos-card:hover {
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.achadinhos-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    overflow: hidden;
}

.achadinhos-card-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
}

.achadinhos-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.5s ease;
}

.achadinhos-card:hover .achadinhos-card-image img {
    transform: scale(1.05);
}

.achadinhos-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.achadinhos-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ach-text);
    line-height: 1.5;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.achadinhos-card-pricing {
    margin-top: auto;
}

.achadinhos-card-discount-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.achadinhos-card-old-price {
    font-size: 14px;
    color: var(--ach-old-price);
    text-decoration: line-through;
}

.achadinhos-card-discount-badge {
    display: inline-block;
    background: var(--ach-discount-badge-bg);
    color: var(--ach-discount-badge-text);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
}

.achadinhos-card-code {
    font-size: 11px;
    color: var(--ach-text-muted);
    margin-top: 2px;
}

.achadinhos-card-price {
    display: flex;
    align-items: flex-start;
    color: var(--ach-card-price);
}

.achadinhos-card-price-from {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--ach-text-muted);
    margin-right: 4px;
    align-self: center;
    text-transform: lowercase;
}

.achadinhos-card-price-currency {
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: 2px;
    margin-top: 4px;
}

.achadinhos-card-price-int {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.025em;
    margin-right: 2px;
}

.achadinhos-card-price-cents {
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 6px;
}

.achadinhos-card-stores {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ach-card-stores);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.achadinhos-card-stores .material-symbols-outlined {
    font-size: 18px;
}

/* Badge de destaque */
.achadinhos-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: rgba(249, 224, 6, 0.9);
    backdrop-filter: blur(4px);
    color: var(--ach-secondary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.achadinhos-card-badge~.achadinhos-share-card {
    top: calc(1rem + 30px);
}

/* Botão favorito */
.achadinhos-card-favorite {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ach-bg-white) !important;
    border-radius: 50%;
    border: none;
    color: var(--ach-text-muted);
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.achadinhos-card:hover .achadinhos-card-favorite {
    opacity: 1;
}

.achadinhos-card-favorite:hover {
    color: var(--ach-discount);
    background: var(--ach-bg-white);
}

.achadinhos-card-favorite.is-favorited {
    opacity: 1;
    color: var(--ach-discount);
    background: var(--ach-bg-white);
}

.achadinhos-card-favorite.is-favorited .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
}

.achadinhos-card-favorite .material-symbols-outlined {
    font-size: 20px;
}

/* Link de favoritos no header */
.achadinhos-favorites-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--ach-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.achadinhos-favorites-link .material-symbols-outlined {
    font-size: 24px;
}

.achadinhos-favorites-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--ach-discount, #e53935);
    color: var(--ach-bg-white, #fff);
    font-size: 10px;
    font-weight: 700;
    border-radius: 9999px;
    padding: 0 4px;
}

/* ========================================
   ARCHIVE LAYOUT (Sidebar + Grid)
======================================== */
.achadinhos-archive-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .achadinhos-archive-layout {
        flex-direction: row;
    }
}

.achadinhos-sidebar {
    width: 100%;
    display: none;
}

@media (min-width: 1024px) {
    .achadinhos-sidebar {
        width: 240px;
        flex-shrink: 0;
        display: block;
    }
}

.achadinhos-sidebar-sticky {
    position: sticky;
    top: 80px;
}

.achadinhos-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ach-text);
    margin: 0 0 8px 0;
}

.achadinhos-sidebar-count {
    font-size: 13px;
    color: var(--ach-text-muted);
    margin-bottom: 24px;
}

.achadinhos-filter-group {
    margin-bottom: 24px;
}

.achadinhos-filter-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ach-text);
    margin: 0 0 12px 0;
}

.achadinhos-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.achadinhos-filter-list li {
    margin-bottom: 8px;
}

.achadinhos-filter-list a {
    font-size: 13px;
    color: var(--ach-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.achadinhos-filter-list a:hover {
    color: var(--ach-link);
}

.achadinhos-filter-list .count {
    font-size: 11px;
    color: var(--ach-text-muted);
}

.achadinhos-archive-content {
    flex: 1;
    min-width: 0;
}

.achadinhos-sort-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ach-border);
}

.achadinhos-sort-bar label {
    font-size: 13px;
    color: var(--ach-text-muted);
}

.achadinhos-sort-bar select {
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--ach-text);
    cursor: pointer;
    padding-right: 20px;
}

/* ========================================
   PAGINATION
======================================== */
.achadinhos-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.achadinhos-page-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.achadinhos-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--ach-text-muted);
    transition: background var(--ach-transition), color var(--ach-transition);
    text-decoration: none;
    box-shadow: var(--ach-shadow);
}

.achadinhos-page-link:hover {
    background: var(--ach-primary);
    color: var(--ach-secondary);
}

.achadinhos-page-link.is-active {
    background: var(--ach-secondary);
    color: #fff;
}

.achadinhos-page-link svg {
    width: 18px;
    height: 18px;
}

.achadinhos-page-prev,
.achadinhos-page-next {
    background: var(--ach-bg-white);
}

.achadinhos-page-dots {
    color: var(--ach-text-muted);
    padding: 0 8px;
    font-size: 14px;
}

/* Paginação mobile - Dante Testa, https://dantetesta.com.br, 2026-02-06 08:44 BRT */
@media (max-width: 768px) {
    .achadinhos-pagination {
        gap: 12px;
    }

    .achadinhos-page-numbers {
        gap: 8px;
    }

    .achadinhos-page-link {
        min-width: 44px;
        height: 44px;
        font-size: 15px;
        border-radius: 14px;
    }

    .achadinhos-page-dots {
        padding: 0 4px;
    }
}

/* Paginação desktop - Dante Testa, https://dantetesta.com.br, 2026-02-07 09:35 BRT */
@media (min-width: 1024px) {
    .achadinhos-pagination {
        gap: 12px;
        /* Espaçamento maior desktop */
    }

    .achadinhos-page-numbers {
        gap: 8px;
        /* Mais espaço entre os números */
    }

    .achadinhos-page-link {
        min-width: 46px;
        /* 15% maior (40 * 1.15) */
        height: 46px;
        padding: 0 14px;
        font-size: 16px;
        /* 15% maior (14 * 1.15 ≈ 16px) */
    }

    .achadinhos-page-link svg {
        width: 20px;
        /* 15% maior */
        height: 20px;
    }

    .achadinhos-page-dots {
        font-size: 16px;
        /* 15% maior */
        padding: 0 10px;
    }
}

/* ========================================
   SINGLE PRODUCT
======================================== */
.achadinhos-single-container {
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius-lg);
    box-shadow: var(--ach-shadow);
    padding: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .achadinhos-single-container {
        padding: 32px;
    }
}

.achadinhos-single-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.achadinhos-single-grid>* {
    min-width: 0;
}

@media (min-width: 1024px) {
    .achadinhos-single-grid {
        grid-template-columns: 3fr 2fr;
        gap: 40px;
    }
}

/* Gallery */
.achadinhos-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    overflow: hidden;
}

.achadinhos-gallery-main {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--ach-radius);
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
}

.achadinhos-gallery-main img,
.achadinhos-gallery-main iframe,
.achadinhos-gallery-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achadinhos-gallery-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--ach-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--ach-transition);
    border: none;
}

.achadinhos-gallery-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.achadinhos-gallery-play svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.achadinhos-gallery-zoom {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform var(--ach-transition), background var(--ach-transition);
    z-index: 5;
}

.achadinhos-gallery-zoom:hover {
    transform: scale(1.1);
    background: #fff;
}

.achadinhos-gallery-zoom .material-symbols-outlined {
    font-size: 24px;
    color: var(--ach-secondary);
}

.achadinhos-gallery-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    max-width: 100%;
}

.achadinhos-gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--ach-radius);
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--ach-transition);
}

.achadinhos-gallery-thumb--active,
.achadinhos-gallery-thumb:hover {
    border-color: var(--ach-primary);
}

.achadinhos-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.achadinhos-product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achadinhos-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.achadinhos-product-badge {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--ach-bg);
    color: var(--ach-text-muted);
}

.achadinhos-product-badge--green {
    background: #e6f7ed;
    color: var(--ach-price);
}

.achadinhos-card-favorite.achadinhos-single-favorite {
    position: static !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    background: var(--ach-bg) !important;
    padding: 4px 10px !important;
    color: var(--ach-text-muted);
    transition: color 0.2s ease, background 0.2s ease;
}

.achadinhos-card-favorite.achadinhos-single-favorite .material-symbols-outlined {
    font-size: 16px;
}

.achadinhos-card-favorite.achadinhos-single-favorite:hover,
.achadinhos-card-favorite.achadinhos-single-favorite.is-favorited {
    color: #e53935;
    background: #fce4ec !important;
}

.achadinhos-card-favorite.achadinhos-single-favorite.is-favorited .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
}

.achadinhos-product-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ach-text);
    margin: 0;
}

@media (min-width: 768px) {
    .achadinhos-product-title {
        font-size: 30px;
    }
}

.achadinhos-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.achadinhos-product-stars {
    display: flex;
    color: var(--ach-primary);
}

.achadinhos-product-reviews {
    font-size: 13px;
    color: var(--ach-text-muted);
    text-decoration: underline;
    cursor: pointer;
}

/* Price Box */
.achadinhos-price-box {
    background: var(--ach-bg);
    border: 1px solid var(--ach-border);
    border-radius: var(--ach-radius);
    padding: 12px 16px;
}

.achadinhos-price-label {
    font-size: 13px;
    color: var(--ach-text-muted);
    margin-bottom: 4px;
}

.achadinhos-price-main {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 0;
}

.achadinhos-price-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--ach-single-price);
    line-height: 1;
}

.achadinhos-price-discount {
    font-size: 13px;
    font-weight: 700;
    color: var(--ach-discount);
    margin-bottom: 6px;
}

.achadinhos-price-updated {
    font-size: 11px;
    color: var(--ach-text-muted);
}

/* Affiliate Links */
.achadinhos-stores {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.achadinhos-stores-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ach-text-muted);
    margin: 0 0 8px 0;
}

.achadinhos-store-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: var(--ach-bg-white);
    border: 1px solid var(--ach-border);
    border-radius: var(--ach-radius);
    transition: box-shadow var(--ach-transition);
}

.achadinhos-store-item:hover {
    box-shadow: var(--ach-shadow);
}

.achadinhos-store-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.achadinhos-store-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--ach-radius);
    background: var(--ach-bg-white);
    border: 1px solid var(--ach-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.achadinhos-store-logo--color {
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.achadinhos-store-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--ach-store-price);
}

.achadinhos-store-meta {
    font-size: 11px;
    color: var(--ach-store-name);
    display: flex;
    align-items: center;
    gap: 4px;
}

.achadinhos-store-btn {
    background: var(--ach-btn-primary-bg) !important;
    color: var(--ach-btn-primary-text) !important;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--ach-radius);
    border: none;
    cursor: pointer;
    transition: background var(--ach-transition);
    text-decoration: none;
    white-space: nowrap;
}

.achadinhos-store-btn:hover {
    opacity: 0.9;
    filter: brightness(0.9);
}

/* Trust Signals */
.achadinhos-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.achadinhos-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--ach-text-muted);
}

.achadinhos-trust-item svg,
.achadinhos-trust-item .material-symbols-outlined {
    color: var(--ach-price);
    flex-shrink: 0;
}

.achadinhos-trust-item--warning .material-symbols-outlined {
    color: #f59e0b;
}

/* Disclaimer */
.achadinhos-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fef3cd;
    border: 1px solid #ffc107;
    border-radius: var(--ach-radius);
    padding: 12px 16px;
    margin-top: 16px;
}

.achadinhos-disclaimer .material-symbols-outlined {
    color: #856404;
    font-size: 20px;
    flex-shrink: 0;
}

.achadinhos-disclaimer p {
    font-size: 12px;
    line-height: 1.5;
    color: #856404;
    margin: 0;
}

/* Description Box */
.achadinhos-description-box {
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius-lg);
    box-shadow: var(--ach-shadow);
    overflow: hidden;
    margin-bottom: 32px;
}

.achadinhos-tabs {
    display: flex;
    border-bottom: 1px solid var(--ach-border);
    padding: 0 24px;
}

.achadinhos-tab {
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ach-text-muted);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color var(--ach-transition), border-color var(--ach-transition);
}

.achadinhos-tab:hover {
    color: var(--ach-text);
}

.achadinhos-tab--active {
    color: var(--ach-secondary);
    border-bottom-color: var(--ach-secondary);
    font-weight: 700;
}

.achadinhos-tab-content {
    padding: 24px;
}

@media (min-width: 768px) {
    .achadinhos-tab-content {
        padding: 32px;
    }
}

.achadinhos-tab-content h1,
.achadinhos-tab-content h2,
.achadinhos-tab-content h3,
.achadinhos-tab-content h4,
.achadinhos-tab-content h5,
.achadinhos-tab-content h6 {
    font-family: var(--ach-font-display);
    color: var(--ach-text);
    margin: 32px 0 16px 0;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.achadinhos-tab-content h1:first-child,
.achadinhos-tab-content h2:first-child,
.achadinhos-tab-content h3:first-child,
.achadinhos-tab-content h4:first-child {
    margin-top: 0;
}

.achadinhos-tab-content h1 {
    font-size: 32px;
}

.achadinhos-tab-content h2 {
    font-size: 28px;
}

.achadinhos-tab-content h3 {
    font-size: 22px;
}

.achadinhos-tab-content h4 {
    font-size: 18px;
}

.achadinhos-tab-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    /* Gray 600 */
    margin: 0 0 20px 0;
}

.achadinhos-tab-content ul,
.achadinhos-tab-content ol {
    margin: 0 0 20px 24px;
    color: #4b5563;
}

.achadinhos-tab-content li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
}

/* Related Products */
.achadinhos-related {
    margin-bottom: 48px;
}

.achadinhos-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.achadinhos-related-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ach-text);
    margin: 0;
}

.achadinhos-related-link {
    font-size: 13px;
    color: var(--ach-link);
}

.achadinhos-related-link:hover {
    text-decoration: underline;
}

/* ========================================
   FOOTER
======================================== */
.achadinhos-footer {
    background: var(--ach-footer-bg);
    border-top: none;
    padding: 48px 0 24px;
    color: var(--ach-footer-text);
}

.achadinhos-footer-inner {
    max-width: var(--ach-max-width);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .achadinhos-footer-inner {
        padding: 0 24px;
    }
}

/* Links de grupo no rodapé */
.achadinhos-footer-group-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: none;
}

.achadinhos-footer-group-link--whatsapp {
    background: var(--ach-group-whatsapp-bg) !important;
    color: var(--ach-group-whatsapp-text) !important;
    border: 1px solid var(--ach-group-whatsapp-bg);
    transition: all 0.3s ease !important;
}

.achadinhos-footer-group-link--whatsapp:hover {
    background: var(--ach-group-whatsapp-text) !important;
    color: var(--ach-group-whatsapp-bg) !important;
}

.achadinhos-footer-group-link--telegram {
    background: var(--ach-group-telegram-bg) !important;
    color: var(--ach-group-telegram-text) !important;
    border: 1px solid var(--ach-group-telegram-bg);
    transition: all 0.3s ease !important;
}

.achadinhos-footer-group-link--telegram:hover {
    background: var(--ach-group-telegram-text) !important;
    color: var(--ach-group-telegram-bg) !important;
}

.achadinhos-footer-group-link svg {
    flex-shrink: 0;
}

.achadinhos-footer-groups-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.achadinhos-footer-groups-col li {
    margin: 0;
}

.achadinhos-footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

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

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

.achadinhos-footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.achadinhos-footer-logo {
    max-height: var(--ach-logo-size, 42px);
    width: auto;
}

.achadinhos-footer-brand-text {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ach-footer-text);
}

.achadinhos-footer-desc {
    font-size: 13px;
    color: var(--ach-footer-text);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.achadinhos-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.achadinhos-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--ach-footer-text);
    transition: all 0.2s ease;
}

.achadinhos-footer-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--ach-footer-text);
}

.achadinhos-footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ach-footer-text);
    margin: 0 0 16px 0;
}

.achadinhos-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.achadinhos-footer-links li {
    margin-bottom: 8px;
}

.achadinhos-footer-links a {
    font-size: 13px;
    color: var(--ach-footer-text);
    opacity: 0.75;
    transition: opacity var(--ach-transition);
}

.achadinhos-footer-links a:hover {
    opacity: 1;
    color: var(--ach-footer-text);
}

.achadinhos-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--ach-footer-text);
    opacity: 0.7;
}

.achadinhos-footer-dev a {
    color: var(--ach-footer-text);
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity var(--ach-transition);
}

.achadinhos-footer-dev a:hover {
    opacity: 1;
}

/* ========================================
   CONTACT PAGE
======================================== */
.achadinhos-contact-page {
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   PÁGINAS INSTITUCIONAIS
======================================== */
.achadinhos-institutional {
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius-lg);
    padding: 40px 32px;
    box-shadow: var(--ach-shadow);
    margin-bottom: 32px;
}

.achadinhos-institutional-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ach-text);
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--ach-border);
}

.achadinhos-institutional-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ach-text);
}

.achadinhos-institutional-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 12px;
    color: var(--ach-text);
}

.achadinhos-institutional-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 8px;
    color: var(--ach-text);
}

.achadinhos-institutional-content p {
    margin: 0 0 16px;
}

.achadinhos-institutional-content ul,
.achadinhos-institutional-content ol {
    margin: 0 0 16px 24px;
}

.achadinhos-institutional-content li {
    margin-bottom: 8px;
}

@media (max-width: 640px) {
    .achadinhos-institutional {
        padding: 24px 16px;
    }

    .achadinhos-institutional-title {
        font-size: 22px;
    }
}

.achadinhos-contact-header {
    text-align: center;
    margin-bottom: 32px;
}

.achadinhos-contact-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--ach-archive-title);
    margin: 0 0 8px;
}

.achadinhos-contact-header p {
    font-size: 16px;
    color: var(--ach-archive-desc);
    margin: 0;
}

.achadinhos-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .achadinhos-contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.achadinhos-stores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .achadinhos-stores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .achadinhos-store-card {
        padding: 16px;
    }

    .achadinhos-store-card-logo {
        width: 64px;
        height: 64px;
    }
}

.achadinhos-contact-form-wrapper {
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius-lg);
    padding: 32px;
    box-shadow: var(--ach-shadow);
}

.achadinhos-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achadinhos-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.achadinhos-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--ach-text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.achadinhos-form-group label .material-symbols-outlined {
    font-size: 16px;
    color: var(--ach-green);
}

.achadinhos-form-group input,
.achadinhos-form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--ach-border);
    border-radius: var(--ach-radius);
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--ach-transition), box-shadow var(--ach-transition);
}

.achadinhos-form-group input:focus,
.achadinhos-form-group textarea:focus {
    outline: none;
    border-color: var(--ach-link);
    box-shadow: 0 0 0 3px rgba(52, 131, 250, 0.1);
}

.achadinhos-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.achadinhos-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .achadinhos-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.achadinhos-captcha {
    background: var(--ach-bg);
    padding: 16px;
    border-radius: var(--ach-radius);
    border: 1px dashed var(--ach-border);
}

.achadinhos-captcha input {
    max-width: 150px;
}

.achadinhos-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.achadinhos-contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--ach-primary);
    color: var(--ach-secondary);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: var(--ach-radius);
    cursor: pointer;
    transition: background var(--ach-transition);
}

.achadinhos-contact-submit:hover {
    background: var(--ach-primary-hover);
}

.achadinhos-contact-submit .material-symbols-outlined {
    font-size: 20px;
}

.achadinhos-form-message {
    padding: 12px 16px;
    border-radius: var(--ach-radius);
    font-size: 14px;
    display: none;
}

.achadinhos-form-message.success {
    display: block;
    background: rgba(0, 166, 80, 0.1);
    color: var(--ach-green);
    border: 1px solid var(--ach-green);
}

.achadinhos-form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: var(--ach-discount);
    border: 1px solid var(--ach-discount);
}

.achadinhos-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achadinhos-contact-info-card {
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius-lg);
    padding: 24px;
    box-shadow: var(--ach-shadow);
    text-align: center;
}

.achadinhos-contact-info-card .material-symbols-outlined {
    font-size: 32px;
    color: var(--ach-secondary);
    margin-bottom: 12px;
}

.achadinhos-contact-info-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--ach-text);
    margin: 0 0 4px;
}

.achadinhos-contact-info-card p {
    font-size: 13px;
    color: var(--ach-text-muted);
    margin: 0;
    word-break: break-word;
}

/* ========================================
   UTILITIES
======================================== */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   IMAGE MODAL (ZOOM)
======================================== */
.achadinhos-image-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.achadinhos-image-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.achadinhos-image-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.achadinhos-image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
}

.achadinhos-image-modal-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--ach-radius);
}

.achadinhos-image-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--ach-transition);
}

.achadinhos-image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.achadinhos-image-modal-close .material-symbols-outlined {
    color: #fff;
    font-size: 24px;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
======================================== */
@media (max-width: 639px) {
    .achadinhos-header-row {
        flex-wrap: wrap;
    }

    .achadinhos-search {
        order: 3;
        max-width: none;
        width: 100%;
        margin-top: 12px;
    }

    .achadinhos-hero-slide {
        padding: 24px;
    }

    .achadinhos-hero-title {
        font-size: 22px;
    }

    .achadinhos-hero-text {
        font-size: 14px;
    }

    .achadinhos-info-strip {
        padding: 12px;
        gap: 12px;
    }

    .achadinhos-info-item {
        gap: 8px;
    }

    .achadinhos-info-icon {
        width: 32px;
        height: 32px;
    }

    .achadinhos-single-container {
        padding: 16px;
    }

    .achadinhos-product-title {
        font-size: 22px;
    }
}

/* ========================================
   COMPARTILHAMENTO
======================================== */

/* Botões de compartilhamento no card */
.achadinhos-share-card {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.achadinhos-share-trigger {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ach-bg-white) !important;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    opacity: 0;
}

.achadinhos-card:hover .achadinhos-share-trigger {
    opacity: 1;
}

.achadinhos-share-card.active .achadinhos-share-trigger {
    opacity: 1;
    background: var(--ach-primary) !important;
}

.achadinhos-share-trigger:hover {
    background: var(--ach-bg) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.achadinhos-share-trigger .material-symbols-outlined {
    font-size: 20px;
    color: var(--ach-text);
}

.achadinhos-share-buttons {
    position: absolute;
    top: 0;
    left: calc(100% + 8px);
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.achadinhos-share-buttons--grid {
    display: grid;
    grid-template-columns: repeat(2, 36px);
    gap: 6px;
}

.achadinhos-share-card.active .achadinhos-share-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.achadinhos-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--share-color, #666);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.achadinhos-share-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.achadinhos-share-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #fff;
}

.achadinhos-share-btn svg path,
.achadinhos-share-btn svg circle {
    fill: #fff;
}

.achadinhos-share-btn--email,
.achadinhos-share-btn--copy {
    background: var(--share-color, #666) !important;
}

.achadinhos-share-btn--email svg,
.achadinhos-share-btn--copy svg {
    color: #fff;
}

.achadinhos-share-btn--email svg path,
.achadinhos-share-btn--email svg rect,
.achadinhos-share-btn--copy svg path,
.achadinhos-share-btn--copy svg rect {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

/* Compartilhamento no single */
.achadinhos-share-single {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--ach-border);
    margin-top: 16px;
}

.achadinhos-share-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--ach-text-muted);
}

.achadinhos-share-buttons--inline {
    display: flex;
    flex-direction: row;
    gap: 8px;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.achadinhos-share-buttons--inline .achadinhos-share-btn {
    width: 40px;
    height: 40px;
}

/* Botão flutuante */
.achadinhos-share-floating {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
}

.achadinhos-share-floating-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.achadinhos-share-floating-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.achadinhos-share-floating-trigger .material-symbols-outlined {
    font-size: 26px;
    color: var(--ach-text);
}

.achadinhos-share-floating-buttons {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.achadinhos-share-floating.active .achadinhos-share-floating-buttons {
    opacity: 1;
    visibility: visible;
}

.achadinhos-share-floating.active .achadinhos-share-floating-buttons .achadinhos-share-btn {
    animation: sharePopIn 0.3s ease forwards;
}

.achadinhos-share-floating-buttons .achadinhos-share-btn {
    width: 44px;
    height: 44px;
    opacity: 0;
    transform: scale(0);
}

.achadinhos-share-floating-buttons .achadinhos-share-btn:nth-child(1) {
    animation-delay: 0s;
}

.achadinhos-share-floating-buttons .achadinhos-share-btn:nth-child(2) {
    animation-delay: 0.05s;
}

.achadinhos-share-floating-buttons .achadinhos-share-btn:nth-child(3) {
    animation-delay: 0.1s;
}

.achadinhos-share-floating-buttons .achadinhos-share-btn:nth-child(4) {
    animation-delay: 0.15s;
}

.achadinhos-share-floating-buttons .achadinhos-share-btn:nth-child(5) {
    animation-delay: 0.2s;
}

.achadinhos-share-floating-buttons .achadinhos-share-btn:nth-child(6) {
    animation-delay: 0.25s;
}

.achadinhos-share-floating-buttons .achadinhos-share-btn:nth-child(7) {
    animation-delay: 0.3s;
}

@keyframes sharePopIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Modal de email */
.achadinhos-email-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.achadinhos-email-modal.active {
    display: flex;
}

.achadinhos-email-modal-content {
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius-lg);
    padding: 32px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.achadinhos-email-modal h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--ach-text);
}

.achadinhos-email-modal .achadinhos-field {
    margin-bottom: 16px;
}

.achadinhos-email-modal label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--ach-text);
}

.achadinhos-email-modal input,
.achadinhos-email-modal textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--ach-border);
    border-radius: var(--ach-radius);
    font-size: 14px;
}

.achadinhos-email-modal textarea {
    min-height: 120px;
    resize: vertical;
}

.achadinhos-email-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.achadinhos-email-modal-actions button {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--ach-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.achadinhos-email-modal-actions .btn-cancel {
    background: var(--ach-bg);
    border: 1px solid var(--ach-border);
    color: var(--ach-text);
}

.achadinhos-email-modal-actions .btn-send {
    background: var(--ach-primary);
    border: none;
    color: var(--ach-text);
}

.achadinhos-email-modal-actions .btn-send:hover {
    background: var(--ach-primary-hover);
}

/* Toast de notificação */
.achadinhos-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--ach-text);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--ach-radius);
    font-size: 14px;
    font-weight: 500;
    z-index: 99999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.achadinhos-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.achadinhos-toast.success {
    background: var(--ach-green);
}

.achadinhos-toast.error {
    background: var(--ach-discount);
}

/* Lojas - Grid */
.achadinhos-stores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 480px) {
    .achadinhos-stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .achadinhos-stores-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .achadinhos-stores-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Lojas - Card */
.achadinhos-store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius-lg);
    padding: 24px 16px 20px;
    text-decoration: none;
    color: var(--ach-text);
    box-shadow: var(--ach-shadow);
    transition: all var(--ach-transition);
    position: relative;
    overflow: hidden;
}

.achadinhos-store-card:hover {
    box-shadow: var(--ach-shadow-hover);
    transform: translateY(-4px);
}

.achadinhos-store-card-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 14px;
    flex-shrink: 0;
    border-radius: 50%;
    /* Garante formato circular */
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.achadinhos-store-card-logo--placeholder {
    border-radius: 50%;
    border: 3px solid #2d3277;
    background: #fff;
}

.achadinhos-store-card-logo--has-img {
    border: none;
    background: transparent;
}

.achadinhos-store-card-logo--has-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Alterado de contain para cover */
}

.achadinhos-store-card-body {
    text-align: center;
    flex: 1;
}

.achadinhos-store-card-name {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--ach-text);
    line-height: 1.3;
}

.achadinhos-store-card-count {
    font-size: 12px;
    color: var(--ach-text-muted);
    font-weight: 500;
}

.achadinhos-store-card-arrow {
    margin-top: 12px;
    color: var(--ach-link);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--ach-transition);
}

.achadinhos-store-card:hover .achadinhos-store-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Loja Individual - Header */
.achadinhos-store-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}

.achadinhos-store-header-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #2d3277;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.achadinhos-store-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Alterado de contain para cover */
    border-radius: 50%;
    /* Garante arredondamento na imagem também */
    padding: 0;
    /* Removido padding interno */
}

.achadinhos-store-header-info {
    flex: 1;
}

.achadinhos-store-header-info .achadinhos-archive-title {
    margin-bottom: 4px;
}

.achadinhos-store-header-info .achadinhos-archive-desc {
    margin: 0;
}

@media (max-width: 480px) {
    .achadinhos-store-header {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        /* Reduzido distância entre logo e título */
    }

    .achadinhos-store-header-logo {
        width: 64px;
        height: 64px;
    }
}

/* Carrossel genérico */
.achadinhos-carousel {
    position: relative;
    overflow: hidden;
}

.achadinhos-carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.achadinhos-carousel-prev,
.achadinhos-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ach-bg-white, #fff);
    border: 1px solid var(--ach-border, #e5e5e5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all var(--ach-transition);
    padding: 0;
}

.achadinhos-carousel-prev {
    left: 4px;
}

.achadinhos-carousel-next {
    right: 4px;
}

.achadinhos-carousel-prev:hover,
.achadinhos-carousel-next:hover {
    background: var(--ach-primary, #f9e006);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.achadinhos-carousel-prev svg,
.achadinhos-carousel-next svg {
    width: 18px;
    height: 18px;
}

/* Carrossel de Lojas (antes do rodapé) */
.achadinhos-stores-carousel-section {
    max-width: var(--ach-max-width);
    margin: 0 auto 0;
    padding: 32px 16px 24px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.achadinhos-stores-carousel-header {
    padding: 0 0 16px;
}

.achadinhos-stores-carousel-header .achadinhos-section-title {
    font-size: 22px;
    font-weight: 300;
    margin: 0;
    color: var(--ach-section-title);
}

.achadinhos-stores-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.achadinhos-stores-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ach-bg-white, #fff);
    border: 1px solid var(--ach-border, #e5e5e5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--ach-transition);
    padding: 0;
}

.achadinhos-stores-arrow:hover {
    background: var(--ach-primary, #f9e006);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.achadinhos-stores-carousel {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.achadinhos-stores-carousel .achadinhos-carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.achadinhos-store-carousel-item {
    flex: 0 0 12.5%;
    max-width: 12.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--ach-text);
    padding: 12px 8px;
    border-radius: var(--ach-radius);
    transition: all var(--ach-transition);
    text-align: center;
    min-width: 0;
    box-sizing: border-box;
}

.achadinhos-store-carousel-item:hover {
    background: var(--ach-bg-white);
    box-shadow: var(--ach-shadow);
    transform: translateY(-2px);
}

.achadinhos-store-carousel-logo {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 8px;
    flex-shrink: 0;
    transition: all var(--ach-transition);
}

.achadinhos-store-carousel-logo--placeholder {
    border-radius: 50%;
    border: 2px solid #2d3277;
    background: #fff;
}

.achadinhos-store-carousel-logo--has-img {
    border-radius: 50%;
    border: none;
    background: transparent;
    padding: 0;
}

.achadinhos-store-carousel-logo--has-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achadinhos-store-carousel-item:hover .achadinhos-store-carousel-logo {
    transform: scale(1.05);
}

.achadinhos-store-carousel-item:hover .achadinhos-store-carousel-logo--placeholder {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.achadinhos-store-carousel-item:hover .achadinhos-store-carousel-name {
    color: var(--ach-text);
}

.achadinhos-store-carousel-item:hover .achadinhos-store-carousel-count {
    color: var(--ach-text-muted);
}

.achadinhos-store-carousel-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ach-section-title);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2px;
}

.achadinhos-store-carousel-count {
    font-size: 11px;
    color: var(--ach-archive-desc);
    font-weight: 400;
}

@media (max-width: 768px) {
    .achadinhos-store-carousel-item {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        padding: 10px 4px;
    }

    .achadinhos-stores-arrow {
        width: 30px;
        height: 30px;
    }

    .achadinhos-stores-arrow svg {
        width: 14px;
        height: 14px;
    }

    .achadinhos-store-carousel-logo {
        width: 64px;
        height: 64px;
        margin-bottom: 10px;
    }

    .achadinhos-store-carousel-name {
        font-size: 15.4px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .achadinhos-store-carousel-count {
        font-size: 12.1px;
    }

    .achadinhos-stores-carousel-wrapper {
        gap: 12px;
    }
}

/* ========================================
   HAMBURGER BUTTON
======================================== */
.achadinhos-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.achadinhos-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ach-header-text, #2d3277);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.achadinhos-hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.achadinhos-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.achadinhos-hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Favoritos mobile */
.achadinhos-mobile-favorites {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 32px;
    height: 32px;
    color: var(--ach-header-text, #2d3277);
    text-decoration: none;
}

.achadinhos-mobile-favorites .material-symbols-outlined {
    font-size: 24px;
}

.achadinhos-favorites-count.achadinhos-favorites-count--mobile {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 9999px;
    line-height: 1;
    padding: 0 4px;
}

/* Lupa mobile toggle */
.achadinhos-mobile-search-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    color: var(--ach-header-text, #2d3277);
}

.achadinhos-mobile-search-toggle .material-symbols-outlined {
    font-size: 24px;
}

/* Busca mobile com animação suave */
.achadinhos-search--mobile {
    display: block !important;
    padding: 0;
    /* Removido padding que causava espaço extra no fundo */
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        transform 0.3s ease,
        padding 0.3s ease;
}

.achadinhos-search--mobile.is-visible {
    max-height: 100px;
    padding: 5px 0 14px;
    /* Padding aplicado apenas quando visível */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.achadinhos-search--mobile .achadinhos-search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 200, 200, 0.3);
}

/* ========================================
   MENU MOBILE OVERLAY
======================================== */
.achadinhos-mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    background: #fff;
    z-index: 10000;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.achadinhos-mobile-menu.is-open {
    left: 0;
}

.achadinhos-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--ach-border, #e5e5e5);
    background: var(--ach-header-bg, #f9e006);
}

.achadinhos-mobile-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ach-header-text, #2d3277);
}

.achadinhos-mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--ach-header-text, #2d3277);
}

.achadinhos-mobile-menu-close .material-symbols-outlined {
    font-size: 24px;
}

.achadinhos-mobile-menu-nav {
    padding: 8px 0;
}

.achadinhos-mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--ach-text, #333);
    font-size: 15px;
    font-weight: 500;
    transition: background 0.15s ease;
}

.achadinhos-mobile-menu-item:hover,
.achadinhos-mobile-menu-item:active {
    background: #f5f5f5;
}

.achadinhos-mobile-menu-item .material-symbols-outlined {
    font-size: 20px;
    color: var(--ach-secondary, #2d3277);
}

.achadinhos-mobile-menu-item--sub {
    padding-left: 24px;
    font-size: 14px;
    font-weight: 400;
    justify-content: space-between;
}

.achadinhos-mobile-menu-item--all {
    font-size: 13px;
    color: var(--ach-link, #3483fa);
    font-weight: 600;
    padding-left: 24px;
}

.achadinhos-mobile-menu-count {
    font-size: 12px;
    color: var(--ach-text-muted, #999);
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
}

.achadinhos-mobile-menu-divider {
    height: 1px;
    background: var(--ach-border, #e5e5e5);
    margin: 8px 0;
}

.achadinhos-mobile-menu-label {
    display: block;
    padding: 8px 16px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ach-text-muted, #999);
}

.achadinhos-mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.achadinhos-mobile-menu-overlay.is-visible {
    display: block;
}

/* ========================================
   MOBILE RESPONSIVE (768px)
======================================== */
@media (max-width: 768px) {

    /* Header mobile */
    .achadinhos-hamburger {
        display: flex;
    }

    .achadinhos-mobile-search-toggle {
        display: flex;
    }

    .achadinhos-mobile-favorites {
        display: flex;
    }

    .achadinhos-search--desktop {
        display: none !important;
    }

    .achadinhos-search--mobile.is-visible {
        display: block !important;
    }

    .achadinhos-header-nav {
        display: none !important;
    }

    .achadinhos-logo-img {
        max-width: 210px;
        max-height: 51px;
        width: auto;
        height: auto;
    }

    .achadinhos-header-actions {
        gap: 16px;
    }

    .achadinhos-favorites-link,
    .achadinhos-hamburger,
    .achadinhos-mobile-search-toggle,
    .achadinhos-mobile-favorites {
        min-width: 36px;
        min-height: 36px;
        pointer-events: auto;
        position: relative;
        z-index: 100;
    }

    /* Compartilhamento em 2 linhas */
    .achadinhos-share-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }

    .achadinhos-share-label {
        width: 100%;
        margin-bottom: 0;
    }

    /* Filtros mais fáceis de clicar */
    .achadinhos-filters-row select,
    .achadinhos-filters-row .achadinhos-filter-select {
        min-height: 44px;
        font-size: 15px;
        padding: 10px 12px;
    }

    .achadinhos-filters-row input[type="search"],
    .achadinhos-filters-row .achadinhos-search-input {
        min-height: 44px;
        font-size: 15px;
    }

    .achadinhos-filters-row button {
        min-height: 44px;
    }

    /* Título lojas parceiras */
    .achadinhos-stores-carousel-header .achadinhos-section-title {
        font-size: 22px;
        /* Restaurado para 22px (era 18px) */
    }

    /* Esconder setas genéricas posicionadas dentro do carrossel no mobile (usamos swipe) */
    .achadinhos-carousel>.achadinhos-carousel-prev,
    .achadinhos-carousel>.achadinhos-carousel-next {
        display: none !important;
    }

    /* Setas do carrossel de destaques menores no mobile */
    .achadinhos-carousel-btn {
        width: 32px;
        height: 32px;
    }

    .achadinhos-carousel-btn .material-symbols-outlined {
        font-size: 18px;
    }
}

/* ========================================
   SETAS DA GALERIA (SINGLE)
======================================== */
.achadinhos-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--ach-border, #e5e5e5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    padding: 0;
    transition: all var(--ach-transition);
}

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

.achadinhos-gallery-arrow--prev {
    left: 8px;
}

.achadinhos-gallery-arrow--next {
    right: 8px;
}

.achadinhos-gallery-arrow:hover {
    background: var(--ach-primary, #f9e006);
}

.achadinhos-gallery-main {
    position: relative;
}

/* ========================================
   CORREÇÕES UI (07/02)
   ======================================== */

/* Esconder preço antigo e desconto nos destaques da semana */
.achadinhos-highlights-carousel .achadinhos-card-old-price,
.achadinhos-highlights-carousel .achadinhos-card-discount-badge {
    display: none !important;
}

/* Corrigir problema de border-radius no hover */
.achadinhos-card {
    overflow: hidden !important;
    transform: translateZ(0);
    /* Força GPU para evitar falhas de renderização */
}

.achadinhos-card:hover {
    overflow: hidden !important;
    border-radius: 8px !important;
    /* Força o radius no desktop */
}

@media (max-width: 768px) {
    .achadinhos-card:hover {
        border-radius: 5px !important;
        /* Força o radius no mobile */
    }
}

/* Correção de fonte do título no destaque mobile (10% menor) */
@media (max-width: 768px) {
    .achadinhos-highlights-carousel .achadinhos-card-title {
        font-size: 13px !important;
        /* Reduzido de 14px para ~13px (aprox 10%) */
        line-height: 1.25;
    }
}

/* Correção lojas disponíveis no destaque (menor e sem negrito) */
.achadinhos-highlights-carousel .achadinhos-card-stores {
    font-size: 11px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    opacity: 0.8;
}

.achadinhos-highlights-carousel .achadinhos-card-stores .material-symbols-outlined {
    font-size: 13px !important;
}

/* Correções Mobile Stores e Setas (07/02) */
@media (max-width: 768px) {

    /* Permitir scroll nas lojas parceiras */
    .achadinhos-stores-carousel .achadinhos-carousel-track {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 7px;
        /* Reduzido em 5px (era 12px) */
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .achadinhos-stores-carousel .achadinhos-carousel-track::-webkit-scrollbar {
        display: none;
    }

    .achadinhos-store-carousel-item {
        flex: 0 0 38% !important;
        /* Ajuste fino (2.6 itens) */
        min-width: 38% !important;
        max-width: 38% !important;
        scroll-snap-align: center;
        padding: 12px 0px;
        /* Padding lateral removido (redução solicitada) */
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: var(--ach-radius);
    }

    .achadinhos-store-carousel-logo {
        width: 72px;
        /* Aumentado proporcionalmente */
        height: 72px;
        object-fit: contain;
        /* Garantir que o logo não distorça */
    }

    /* Ocultar todas as setas de navegação no mobile */
    .achadinhos-banner-prev,
    .achadinhos-banner-next,
    .achadinhos-carousel-btn,
    .ach-cat-carousel__btn,
    .achadinhos-stores-arrow {
        display: none !important;
    }
}

/* Ajuste posição favorito e badge mobile (Mais espaçado) */
@media (max-width: 768px) {
    .achadinhos-card-favorite {
        top: 8px !important;
        /* Aumentado espaçamento da borda para não colar */
        right: 8px !important;
        /* Aumentado espaçamento da borda para não colar */
        width: 33px !important;
        /* Reduzido tamanho (era 36px) */
        height: 33px !important;
    }

    .achadinhos-card-badge {
        top: 8px !important;
        /* Aumentado espaçamento da borda para não colar */
        left: 8px !important;
        /* Aumentado espaçamento da borda para não colar */
    }
}

/* Aumento do preço dos destaques da home (Solicitação User) */
.achadinhos-highlights-carousel .achadinhos-card-price-int {
    font-size: 1.5rem !important;
    /* Aumentado para ~24px */
}

.achadinhos-highlights-carousel .achadinhos-card-price-currency {
    font-size: 0.9rem !important;
    /* Aumentado proporcionalmente */
    margin-top: 2px;
}

.achadinhos-highlights-carousel .achadinhos-card-price-cents {
    font-size: 0.75rem !important;
    /* Aumentado proporcionalmente */
    margin-top: 2px;
}

/* Ocultar botões de compartilhamento no mobile */
@media (max-width: 768px) {

    .achadinhos-share-card,
    .achadinhos-share-trigger,
    .achadinhos-share-floating {
        display: none !important;
    }
}

/* Ajuste posição favorito mobile */
@media (max-width: 768px) {
    .achadinhos-card-favorite {
        top: 2px !important;
        /* Deslocado para cima (era 6px) */
        right: 2px !important;
        /* Deslocado para direita (era 6px) */
    }
}

/* Correção compartilhamento single mobile */
@media (max-width: 768px) {

    /* Label em cima */
    .achadinhos-share-single {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .achadinhos-share-label {
        width: 100%;
        margin-bottom: 4px;
        text-align: left;
    }

    /* Ícones em linha única com scroll */
    .achadinhos-share-buttons--inline {
        width: 100%;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        justify-content: flex-start !important;
        gap: 6px !important;
        /* Reduzido de 10px */
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    /* Remover scrollbar visual */
    .achadinhos-share-buttons--inline::-webkit-scrollbar {
        display: none;
    }

    .achadinhos-share-buttons--inline .achadinhos-share-btn {
        flex-shrink: 0;
        width: 32px;
        /* Forçar tamanho menor para caber */
        height: 32px;
        background-size: 16px;
        /* Ajuste se for svg bg */
    }
}

/* Padronizar estilo de 'lojas disponíveis' em todos os cards (Relacionados, Archive, etc) */
.achadinhos-card-stores {
    font-size: 11px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    opacity: 0.8;
}

.achadinhos-card-stores .material-symbols-outlined {
    font-size: 13px !important;
}

/* Scroll Snap Nativo para Banners Mobile (Correção Swipe) */
@media (max-width: 768px) {
    .achadinhos-banners.is-carousel .achadinhos-banners-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        transform: none !important;
        /* Desabilitar interferência do JS */
        width: 100%;
    }

    .achadinhos-banners.is-carousel .achadinhos-banners-track::-webkit-scrollbar {
        display: none;
    }

    .achadinhos-banner-slide {
        scroll-snap-align: start;
        flex: 0 0 100%;
        min-width: 100%;
    }

    /* Impedir drag de imagem atrapalhando o scroll */
    .achadinhos-banner-slide img,
    .achadinhos-banner-slide a {
        -webkit-user-drag: none;
        -webkit-touch-callout: none;
    }
}

/* Centralizar Rodapé no Mobile */
@media (max-width: 640px) {

    .achadinhos-footer-brand,
    .achadinhos-footer-social {
        justify-content: center;
    }

    .achadinhos-footer-desc,
    .achadinhos-footer-title,
    .achadinhos-footer-links {
        text-align: center;
    }

    .achadinhos-footer-groups-col {
        align-items: center;
    }
}

/* Responsive Banner Background */
.achadinhos-banner-slide--content.achadinhos-has-bg {
    background-image: var(--ach-grad), var(--ach-bg-desk);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .achadinhos-banner-slide--content.achadinhos-has-bg {
        background-image: var(--ach-grad), var(--ach-bg-mob);
    }
}

/* Botão Ver Detalhes (No Price) */
.achadinhos-card-no-price {
    min-height: 24px;
    display: flex;
    align-items: center;
    width: 100%;
}

.achadinhos-card-btn-view {
    display: block;
    padding: 6px 12px;
    background: var(--ach-primary);
    color: var(--ach-text) !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--ach-radius);
    text-align: center;
    width: 100%;
    transition: background var(--ach-transition), transform var(--ach-transition);
}

.achadinhos-card-btn-view:hover {
    background: var(--ach-primary-hover);
    color: var(--ach-text) !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--ach-shadow);
}

/* Blog Post Card Styles */
.achadinhos-card--post .achadinhos-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.achadinhos-card--post .achadinhos-btn-outline {
    margin-top: auto;
    border-radius: var(--ach-radius);
    transition: all 0.3s ease;
}

.achadinhos-card--post .achadinhos-btn-outline:hover {
    background: var(--ach-primary);
    border-color: var(--ach-primary);
    color: var(--ach-text);
}

/* ========================================
   Blog Post Grid & Cards (3 columns)
======================================== */
.achadinhos-blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .achadinhos-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .achadinhos-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.achadinhos-post-card {
    background: var(--ach-bg-white);
    border-radius: var(--ach-radius-lg);
    overflow: hidden;
    box-shadow: var(--ach-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.achadinhos-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ach-shadow-hover);
}

.achadinhos-post-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    /* Standard post image ratio */
    overflow: hidden;
    position: relative;
    background: var(--ach-bg-light);
}

.achadinhos-post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achadinhos-post-card:hover .achadinhos-post-card-image img {
    transform: scale(1.05);
}

.achadinhos-post-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.achadinhos-post-card-category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(45, 50, 119, 0.08);
    /* Primary color low opacity */
    color: var(--ach-primary);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.achadinhos-post-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ach-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* Max 3 lines title */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.2s ease;
}

.achadinhos-post-card:hover .achadinhos-post-card-title {
    color: var(--ach-link-hover);
}

.achadinhos-post-card-readmore {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: #FFD700;
    /* Yellow button as per screenshot */
    color: #000;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    /* Slightly rounded */
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    gap: 6px;
}

.achadinhos-post-card-readmore:hover {
    background: #ffea00;
    transform: translateY(-1px);
}

.achadinhos-post-card-readmore .material-symbols-outlined {
    font-size: 18px;
    display: none;
    /* Hide icon to match screenshot */
}

/* ========================================
   Latest Blog Section (Minimalist)
======================================== */
.achadinhos-latest-blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .achadinhos-latest-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .achadinhos-latest-blog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.achadinhos-blog-minimal-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.achadinhos-blog-minimal-card:hover {
    transform: translateY(-4px);
}

.achadinhos-blog-minimal-card-image {
    border-radius: var(--ach-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--ach-bg-light);
    margin-bottom: 12px;
    box-shadow: var(--ach-shadow);
}

.achadinhos-blog-minimal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achadinhos-blog-minimal-card:hover .achadinhos-blog-minimal-card-image img {
    transform: scale(1.05);
}

.achadinhos-blog-minimal-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ach-section-title);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.achadinhos-blog-minimal-card:hover .achadinhos-blog-minimal-card-title {
    color: var(--ach-section-title-hover);
}

/* Section Header Link */
.achadinhos-section-header-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--ach-section-link);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.achadinhos-section-header-link:hover {
    color: var(--ach-link-hover);
}

.achadinhos-section-header-link:hover span:first-child {
    text-decoration: underline;
}

/* ========================================
   Blog Colors & Category Styles
======================================== */
.achadinhos-blog-category,
.achadinhos-post-card-category {
    background-color: var(--ach-blog-cat-bg, #e8f4fd) !important;
    color: var(--ach-blog-cat-text, #3483fa) !important;
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.achadinhos-blog-category:hover,
.achadinhos-post-card-category:hover {
    filter: brightness(0.95);
}

/* Post Content Links */
.achadinhos-blog-content a {
    color: var(--ach-blog-link);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.achadinhos-blog-content a:hover {
    color: var(--ach-blog-link-hover);
}

/* Related Posts Grid (3 columns) */
@media (min-width: 1024px) {
    .achadinhos-related-posts-section .achadinhos-latest-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}