/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Tema filho para Hello Elementor
Author: Proglobal
Author URI: Proglobal
Template: hello-elementor
Version: 1.2.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-elementor-child
*/

/* ===================================================================
   GAMA DE CORES - Sistema de Famílias de Cores
   =================================================================== */

/* Secção de Famílias */
.color-families-section {
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #eee !important;
}

.family-section-label {
    display: block !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #737373 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 10px !important;
    padding: 0px 10px !important;
}

.selected-family-label {
    font-weight: 400 !important;
    color: #333 !important;
    text-transform: none !important;
}

/* Grid de Famílias - HORIZONTAL */
.color-families-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

/* Swatch circular de família - SEM all:unset para preservar background inline */
button.family-swatch,
.filter-options .family-swatch,
.color-families-grid .family-swatch {
    /* Reset específico sem all:unset */
    appearance: none !important;
    -webkit-appearance: none !important;
    margin: 0 !important;
    padding: 0px 10px !important;
    font: inherit !important;
    color: inherit !important;
    text-align: inherit !important;
    text-decoration: none !important;

    /* Dimensões circulares */
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;

    /* Forma circular */
    border-radius: 50% !important;
    border: 2px solid #ddd !important;

    /* Display e posicionamento */
    display: inline-block !important;
    box-sizing: border-box !important;
    cursor: pointer !important;

    /* Animação */
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease !important;

    /* Flex */
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

/* Hover */
button.family-swatch:hover,
.family-swatch:hover {
    transform: scale(1.1) !important;
    border-color: #999 !important;
}

/* Activo */
button.family-swatch.active,
.family-swatch.active {
    border-color: #333 !important;
    box-shadow: 0 0 0 2px #333 !important;
}

/* Famílias especiais */
.family-swatch.family-multicolor {
    background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red) !important;
}

.family-swatch.family-pattern {
    background: repeating-linear-gradient(45deg, #ddd 0px, #ddd 3px, #fff 3px, #fff 6px) !important;
}

.family-swatch.family-transparent {
    background: linear-gradient(45deg, #ccc 25%, transparent 25%),
                linear-gradient(-45deg, #ccc 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #ccc 75%),
                linear-gradient(-45deg, transparent 75%, #ccc 75%) !important;
    background-size: 6px 6px !important;
    background-color: #fff !important;
}

/* Botão limpar família */
.clear-family-filter {
    display: none !important;
    background: none !important;
    border: none !important;
    color: #999 !important;
    font-size: 11px !important;
    cursor: pointer !important;
    padding: 5px 0 !important;
    margin-top: 5px !important;
}

.clear-family-filter:hover {
    color: #333 !important;
    text-decoration: underline !important;
}

/* ===================================================================
   CORES INDIVIDUAIS - OCULTAS POR DEFEITO
   =================================================================== */

/* OCULTAR todas as cores por defeito */
.filter-options .filter-color-wrapper {
    display: none !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 4px !important;
    border-radius: 4px !important;
}

/* MOSTRAR cores quando têm classe show-color */
.filter-options .filter-color-wrapper.show-color {
    display: flex !important;
}

/* OCULTAR cores de famílias não seleccionadas */
.filter-options .filter-color-wrapper.family-hidden {
    display: none !important;
}

.filter-color-wrapper:hover {
    background: #f5f5f5 !important;
}

/* Swatch de cor */
.filter-color-item {
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
}

.filter-color-item input[type="checkbox"] {
    display: none !important;
}

.swatch-circle {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    border-radius: 50% !important;
    border: 2px solid #ddd !important;
    transition: all 0.15s ease !important;
}

.filter-color-item input[type="checkbox"]:checked + .swatch-circle {
    border-color: #333 !important;
    box-shadow: 0 0 0 2px #333 !important;
}

/* Seleccao por familia — nao mostrar border de checked (user ainda nao escolheu cor especifica) */
.filter-color-wrapper[data-family-checked] .filter-color-item input[type="checkbox"]:checked + .swatch-circle {
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Esconder nome da cor - usar tooltip no hover */
.swatch-name {
    display: none !important;
}

/* Tooltip para cores individuais (usa o title attribute) */
.filter-color-wrapper {
    position: relative !important;
}

.filter-color-wrapper::after {
    content: attr(data-title);
    position: absolute !important;
    bottom: calc(100% + 6px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #333 !important;
    color: #fff !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.15s ease !important;
    z-index: 100 !important;
    pointer-events: none !important;
}

.filter-color-wrapper:hover::after {
    opacity: 1 !important;
    visibility: visible !important;
}

/* OCULTAR cores pendentes de carregamento */
.filter-options .filter-color-wrapper.is-hidden-family {
    display: none !important;
}

/* Botão "Ver mais cores" - oculto por defeito */
.swatches-expand-button-filters {
    display: none !important;
}

/* Mostrar botão quando tem classe show-expand */
.swatches-expand-button-filters.show-expand {
    display: block !important;
    width: 100% !important;
    margin-top: 10px !important;
}

/* ===================================================================
   FIM - GAMA DE CORES
   =================================================================== */

/* ===================================================================
   HOMEPAGE — [trend_cards] shortcode
   =================================================================== */
.pgb-trend-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}
.pgb-trend-cards__card {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    cursor: pointer;
}
.pgb-trend-cards__card:focus-visible {
    outline: 3px solid #0069A7;
    outline-offset: 2px;
}
.pgb-trend-cards__bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease-out;
}
@media (hover: hover) {
    .pgb-trend-cards__card:hover .pgb-trend-cards__bg { transform: scale(1.05); }
}
.pgb-trend-cards__overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 32px 28px;
    box-sizing: border-box;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    min-height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
}
h3.pgb-trend-cards__title {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem) !important;
    line-height: 1.2 !important;
    margin: 0 60px 4px 0 !important;
    padding: 0 !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-family: inherit !important;
}
p.pgb-trend-cards__desc {
    font-size: clamp(0.75rem, 0.9vw, 0.9rem) !important;
    line-height: 1.3 !important;
    margin: 0 80px 0 0 !important;
    padding: 0 !important;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500 !important;
}
.pgb-trend-cards__arrow {
    position: absolute;
    bottom: 28px; right: 28px;
    z-index: 2;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(12px);
    transition: all 0.3s ease-out;
}
.pgb-trend-cards__card:hover .pgb-trend-cards__arrow,
.pgb-trend-cards__card:focus-visible .pgb-trend-cards__arrow {
    opacity: 1;
    transform: translateX(0);
    background: rgba(255,255,255,0.85);
    color: #333;
}
@media (max-width: 1024px) {
    .pgb-trend-cards__card { max-height: none; }
}
@media (max-width: 768px) {
    .pgb-trend-cards { grid-template-columns: 1fr; }
    .pgb-trend-cards__card { aspect-ratio: 4/3; }
    .pgb-trend-cards__overlay { padding: 16px; }
    .pgb-trend-cards__arrow { bottom: 16px; right: 16px; }
}
@media (prefers-reduced-motion: reduce) {
    .pgb-trend-cards__bg { transition: none; }
    .pgb-trend-cards__arrow { transition: none; }
}
/* ===================================================================
   FIM — [trend_cards]
   =================================================================== */

/* ===================================================================
   HOMEPAGE — [promo_grid] shortcode
   =================================================================== */
.pgb-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    grid-auto-rows: 420px;
}
.pgb-promo-grid__block {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    cursor: pointer;
}
.pgb-promo-grid__block--wide {
    grid-column: span 2;
}
.pgb-promo-grid__block:focus-visible {
    outline: 3px solid #0069A7;
    outline-offset: 2px;
}
.pgb-promo-grid__block img.pgb-promo-grid__bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease-out;
}
@media (hover: hover) {
    .pgb-promo-grid__block:hover .pgb-promo-grid__bg { transform: scale(1.05); }
}
.pgb-promo-grid__overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 32px 28px;
    box-sizing: border-box;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    min-height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}
h3.pgb-promo-grid__title {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem) !important;
    line-height: 1.2 !important;
    margin: 0 60px 0 0 !important;
    padding: 0 !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-family: inherit !important;
}
p.pgb-promo-grid__desc {
    font-size: clamp(0.75rem, 0.9vw, 0.9rem) !important;
    line-height: 1.3 !important;
    margin: 0 60px 0 0 !important;
    padding: 0 !important;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500 !important;
}

/* Solid color blocks — texto escuro, sem gradient */
.pgb-promo-grid__block--solid .pgb-promo-grid__overlay {
    background: none;
}
.pgb-promo-grid__block--solid h3.pgb-promo-grid__title {
    color: #222 !important;
    font-size: clamp(1.5rem, 2vw, 3rem) !important;
}
.pgb-promo-grid__block--solid p.pgb-promo-grid__desc {
    color: #222!important;
    font-size: clamp(0.85rem, 1vw, 1.1rem) !important;
    font-weight: 600 !important;
}

/* Arrow — hover only */
.pgb-promo-grid__arrow {
    position: absolute;
    bottom: 28px; right: 28px;
    z-index: 2;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(12px);
    transition: all 0.3s ease-out;
}
.pgb-promo-grid__block:hover .pgb-promo-grid__arrow,
.pgb-promo-grid__block:focus-visible .pgb-promo-grid__arrow {
    opacity: 1;
    transform: translateX(0);
    background: rgba(255,255,255,0.85);
    color: #333;
}

/* Responsive */
@media (max-width: 1024px) {
    .pgb-promo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 350px; }
    .pgb-promo-grid__block--wide { grid-column: span 2; }
}
@media (max-width: 768px) {
    .pgb-promo-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .pgb-promo-grid__block--wide { grid-column: auto; }
    .pgb-promo-grid__overlay { padding: 20px 16px; }
    .pgb-promo-grid__arrow { bottom: 16px; right: 16px; }
}
@media (prefers-reduced-motion: reduce) {
    .pgb-promo-grid__bg { transition: none; }
    .pgb-promo-grid__arrow { transition: none; }
}
/* ===================================================================
   FIM — [promo_grid]
   =================================================================== */

/* ===================================================================
   HOMEPAGE — [destaques_mes] shortcode
   =================================================================== */

/* Header — titulo + ver mais */
.pgb-destaques__header {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    gap: 8px;
}
.pgb-destaques__header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.pgb-destaques__desc {
    margin: 10px 0 0 0 !important;
    padding: 0 !important;
    font-size: 0.9rem;
    color: #222;
    line-height: 1.5;
    flex: 1;
    font-weight: 500;
}
h2.pgb-destaques__heading {
    font-size: clamp(1.4rem, 2vw, 2rem) !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #222 !important;
    font-family: inherit !important;
    line-height: 1.3 !important;
}
a.pgb-destaques__ver-mais {
    display: inline-block;
    white-space: nowrap;
    padding: 12px 40px;
    background-color: var(--e-global-color-primary, #0069A7);
    color: #FFFFFF !important;
    fill: #FFFFFF;
    text-decoration: none !important;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important;
    letter-spacing: 0px;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
    border-radius: 100px;
}
a.pgb-destaques__ver-mais:hover {
    opacity: 0.85;
}

/* Body — featured + slider side by side */
.pgb-destaques__body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: stretch;
}

/* Featured block (esquerda) */
.pgb-destaques__feature {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    min-height: 400px;
}
.pgb-destaques__feature-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease-out;
}
@media (hover: hover) {
    .pgb-destaques__feature:hover .pgb-destaques__feature-bg { transform: scale(1.05); }
}
.pgb-destaques__feature-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 36px;
    box-sizing: border-box;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    min-height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
}
.pgb-destaques__feature-label {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 18px;
    background: #c53030;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
}
h3.pgb-destaques__feature-title {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem) !important;
    line-height: 1.3 !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-family: inherit !important;
}
.pgb-destaques__feature-overlay:has(.pgb-destaques__feature-tagline) h3.pgb-destaques__feature-title {
    margin-bottom: 0 !important;
}
.pgb-destaques__feature-tagline {
    margin: 0 !important;
    padding: 0 !important;
    font-size: clamp(0.85rem, 1.05vw, 1rem) !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    max-width: 48ch;
}
.pgb-destaques__feature-cta {
    display: inline-block;
    align-self: flex-start;
    padding: 10px 30px;
    background: #fff;
    color: #222;
    font-size: 0.8rem;
    font-weight: 700 !important;
    border-radius: 100px;
    transition: background 0.2s ease;
}
.pgb-destaques__feature:hover .pgb-destaques__feature-cta {
    background: rgba(255,255,255,0.85);
}

/* Slider wrapper (direita) */
.pgb-destaques__slider-wrap {
    position: relative;
    min-width: 0; /* previne overflow do grid */
}
.pgb-destaques__slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0;
}
.pgb-destaques__slider::-webkit-scrollbar { display: none; }
.pgb-destaques__slide {
    flex: 0 0 calc(33.333% - 10px);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    min-width: 0;
    display: flex;
}
.pgb-destaques__slide .product-item {
    flex: 1;
}

/* Nav buttons — mesmo padrao dos outros componentes */
.pgb-destaques__btn {
    position: absolute !important;
    top: 40% !important;
    transform: translateY(-50%) !important;
    width: 46px !important; height: 46px !important;
    min-width: 46px !important;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(255,255,255,0.92) !important;
    color: #333 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.2s ease;
    pointer-events: auto !important;
    z-index: 2 !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
}
.pgb-destaques__slider-wrap:hover .pgb-destaques__btn:not([hidden]) {
    opacity: 1;
}
.pgb-destaques__btn:hover {
    background: rgba(255,255,255,0.85) !important;
    color: #333 !important;
}
.pgb-destaques__btn:focus-visible {
    opacity: 1;
    outline: 3px solid #0069A7 !important;
    outline-offset: 2px;
}
.pgb-destaques__btn[hidden] { display: none !important; }
.pgb-destaques__btn--prev { left: -12px !important; }
.pgb-destaques__btn--next { right: -12px !important; }

/* Progress bar */
.pgb-destaques__progress {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-top: 16px;
    overflow: hidden;
}
.pgb-destaques__progress-bar {
    height: 100%;
    width: 0%;
    background: #333;
    border-radius: 2px;
    transition: width 0.15s ease-out;
}

/* Responsive */
@media (max-width: 1024px) {
    .pgb-destaques__slide {
        flex: 0 0 calc(50% - 8px);
    }
}
@media (max-width: 768px) {
    .pgb-destaques__body {
        grid-template-columns: 1fr;
    }
    .pgb-destaques__feature {
        min-height: 300px;
    }
    .pgb-destaques__slide {
        flex: 0 0 calc(50% - 8px);
    }
    .pgb-destaques__feature-overlay { padding: 20px; }
    .pgb-destaques__btn { width: 40px !important; height: 40px !important; }
    .pgb-destaques__btn--prev { left: 4px !important; }
    .pgb-destaques__btn--next { right: 4px !important; }
}
@media (prefers-reduced-motion: reduce) {
    .pgb-destaques__feature-bg { transition: none; }
    .pgb-destaques__slider { scroll-behavior: auto; }
    .pgb-destaques__progress-bar { transition: none; }
}
/* === DESTAQUES MULTI-CAMPANHA: Toolbar + Tabs + Panels === */

/* Toolbar: tabs (left) + ver-mais (right) */
.pgb-destaques__toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.pgb-destaques__nav {
    display: flex;
    gap: 40px;
    padding: 0px !important;
}

/* Underline tabs — anti-Elementor overrides */
.pgb-destaques .pgb-destaques__tab {
    position: relative;
    padding: 0px 0px 10px 0px !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #888 !important;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    box-shadow: none !important;
    overflow: visible;
    transition: color 0.2s;
    margin: 20px 0px 0px 0px !important;
    min-height: auto !important;
    max-width: fit-content !important;
}

.pgb-destaques .pgb-destaques__tab:hover {
    color: #333 !important;
    background: transparent !important;
}

.pgb-destaques .pgb-destaques__tab--active {
    color: #222 !important;
    font-weight: 600 !important;
    background: transparent !important;
}

/* Underline indicator: thin line at bottom of tab */
.pgb-destaques__tab-progress {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--accent, #333);
    z-index: 1;
}

/* Inactive tabs: no underline */
.pgb-destaques__tab:not(.pgb-destaques__tab--active) .pgb-destaques__tab-progress {
    width: 0 !important;
    animation: none !important;
}

/* Active tab: progress fill as underline */
.pgb-destaques__tab--active .pgb-destaques__tab-progress {
    animation: pgb-tab-fill 10s linear forwards;
}

/* Hover pause — via CSS class toggle (avoids Chrome inline animationPlayState bug) */
.pgb-destaques--paused .pgb-destaques__tab--active .pgb-destaques__tab-progress {
    animation-play-state: paused;
}

@keyframes pgb-tab-fill {
    from { width: 0; }
    to   { width: 100%; }
}

/* Ver-mais in toolbar — per-campaign, toggled by JS */
.pgb-destaques .pgb-destaques__toolbar-link {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 10px 40px !important;
    transition: opacity 0.2s;
}

.pgb-destaques__toolbar-link[hidden] {
    display: none !important;
}

/* Panels: fade transition via CSS Grid stacking (no layout shift) */
.pgb-destaques__panels {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.pgb-destaques__panel {
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s;
}

.pgb-destaques__panel--active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 600px) {
    .pgb-destaques__toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-bottom: none;
    }
    .pgb-destaques__nav {
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }
    .pgb-destaques .pgb-destaques__tab {
        padding: 8px 14px 10px !important;
        font-size: 13px !important;
    }
    .pgb-destaques .pgb-destaques__toolbar-link {
        padding: 10px 0 0;
    }
}

/* Reduced motion: disable tab/panel animations */
@media (prefers-reduced-motion: reduce) {
    .pgb-destaques__tab-progress { animation: none !important; }
    .pgb-destaques__panel { transition: none !important; }
}

/* ===================================================================
   FIM — [destaques_mes]
   =================================================================== */

/* Estilos para o estado de carregamento dos produtos */
.products.custom-product-grid.loading-products {
    opacity: 0.5;
    position: relative;
    transition: opacity 0.3s ease-in-out;
}

.products.custom-product-grid.loading-products::before {
    content: "A carregar produtos...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 10;
}
