/* Estilos específicos para página de produtos */

.products-page {
    min-height: 100vh;
    background: #101014;
    padding: 40px 0 80px;
    position: relative;
}

.products-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(219, 0, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(219, 0, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.products-container {
    position: relative;
    z-index: 2;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', 'Tungsten Bold', sans-serif;
}

.page-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Nota: responsividade principal está no final do arquivo */

/* Sidebar de Filtros */
.sidebar-filters {
    background: linear-gradient(135deg, #1a1a1e 0%, #0e0e10 100%);
    border: 1px solid rgba(219, 0, 0, 0.3);
    border-radius: 12px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px; /* Espaçamento para o header fixo */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Nota: ajuste de sidebar top em mobile está no final do arquivo */

.filter-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(219, 0, 0, 0.2);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Bebas Neue', 'Tungsten Bold', sans-serif;
}

.filter-title i {
    color: #db0000;
    font-size: 1.2rem;
}

/* Campo de Busca na Sidebar */
.search-input-wrapper {
    position: relative;
    width: 100%;
}

.sidebar-search-input {
    width: 100%;
    padding: 12px 42px 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(219, 0, 0, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'DIN Next', 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sidebar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-search-input:focus {
    outline: none;
    border-color: #db0000;
    box-shadow: 0 0 0 3px rgba(219, 0, 0, 0.2);
    background: rgba(30, 30, 35, 0.9);
}

.search-input-wrapper .search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #db0000;
    font-size: 1.1rem;
    pointer-events: none;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    margin-bottom: 0;
    width: 100%;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-link:hover {
    background: rgba(219, 0, 0, 0.1);
    color: #ffffff;
    transform: translateX(5px);
}

.category-link.active {
    background: rgba(219, 0, 0, 0.2);
    color: #db0000;
    font-weight: 600;
    border-left: 3px solid #db0000;
    padding-left: 9px;
}

.category-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.filter-checkbox:hover {
    background: rgba(219, 0, 0, 0.05);
}

.filter-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.filter-checkbox label {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    position: relative;
    padding-left: 32px;
}

.filter-checkbox label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(219, 0, 0, 0.4);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.filter-checkbox label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 8px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.filter-checkbox:hover label {
    color: #ffffff;
}

.filter-checkbox:hover label::before {
    border-color: rgba(219, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(219, 0, 0, 0.3);
}

.filter-checkbox input[type="checkbox"]:checked + label {
    color: #db0000;
    font-weight: 600;
}

.filter-checkbox input[type="checkbox"]:checked + label::before {
    background: linear-gradient(135deg, #db0000 0%, #b80000 100%);
    border-color: #db0000;
    box-shadow: 0 0 12px rgba(219, 0, 0, 0.5);
}

.filter-checkbox input[type="checkbox"]:checked + label::after {
    transform: translateY(-50%) rotate(45deg) scale(1);
}

.currency-select {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(219, 0, 0, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.currency-select:hover {
    border-color: #db0000;
}

.currency-select:focus {
    outline: none;
    border-color: #db0000;
    box-shadow: 0 0 0 3px rgba(219, 0, 0, 0.2);
}

.currency-select option {
    background: #1a1a1e;
    color: #ffffff;
}

/* Área Principal de Produtos */
.products-main {
    position: relative;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.products-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.products-count strong {
    color: #db0000;
    font-weight: 700;
}

/* Custom Select Dropdown Gaming - igual ao perfil */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    max-width: 250px;
}

.custom-select-trigger {
    width: 100%;
    background: rgba(24, 24, 28, 0.8);
    border: 1px solid rgba(219, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px 42px 12px 16px;
    color: #ffffff;
    font-family: 'DIN Next', 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.custom-select-trigger:hover {
    border-color: rgba(219, 0, 0, 0.5);
    background-color: rgba(30, 30, 35, 0.95);
    box-shadow: 0 0 0 2px rgba(219, 0, 0, 0.1);
}

.custom-select-wrapper.open .custom-select-trigger {
    border-color: #db0000;
    box-shadow: 0 0 0 3px rgba(219, 0, 0, 0.2), 0 0 25px rgba(219, 0, 0, 0.3);
    background-color: rgba(30, 30, 35, 1);
}

.custom-select-trigger .custom-select-value {
    flex: 1;
    color: #ffffff;
}

.custom-select-trigger .custom-select-value.placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.custom-select-trigger .custom-select-arrow {
    position: absolute;
    right: 14px;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-select-trigger .custom-select-arrow i {
    color: #db0000;
    font-size: 1.1rem;
}

.custom-select-wrapper.open .custom-select-trigger .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #18181c;
    border: 1px solid rgba(219, 0, 0, 0.3);
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.custom-select-wrapper.open .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 14px 16px;
    color: #ffffff;
    font-family: 'DIN Next', 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: rgba(219, 0, 0, 0.3);
    color: #ffffff;
}

.custom-select-option.selected {
    background: rgba(219, 0, 0, 0.4);
    color: #ffffff;
}

/* Scrollbar do dropdown customizado */
.custom-select-dropdown::-webkit-scrollbar {
    width: 8px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
    background: rgba(20, 20, 24, 0.8);
    border-radius: 4px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(219, 0, 0, 0.6);
    border-radius: 4px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(219, 0, 0, 0.8);
}

.custom-select-dropdown {
    scrollbar-width: thin;
    scrollbar-color: rgba(219, 0, 0, 0.6) rgba(20, 20, 24, 0.8);
}

.sort-select {
    display: none; /* Esconder select original */
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* Nota: grid responsivo de produtos está no final do arquivo */

.product-card {
    background: linear-gradient(135deg, #1a1a1e 0%, #0e0e10 100%);
    border: 1px solid rgba(219, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(219, 0, 0, 0.3);
    border-color: #db0000;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.5);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.product-image-wrapper .product-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.product-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.badge-discount {
    background: #db0000;
    color: #ffffff;
}

.badge-featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
}

.badge-new {
    background: #4caf50;
    color: #ffffff;
}

.product-info {
    padding: 16px;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.3s;
}

.product-title:hover {
    color: #db0000;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.product-price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: #db0000;
}

.product-price-original {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.product-price-discount {
    font-size: 0.85rem;
    color: #4caf50;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.product-rating i {
    color: #ffd700;
    font-size: 0.85rem;
}

.product-rating i.ri-star-line {
    color: rgba(255, 215, 0, 0.3);
}

.product-rating span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-add-cart {
    flex: 1;
    padding: 10px;
    background: linear-gradient(135deg, #db0000 0%, #b80000 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-add-cart:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff0000 0%, #db0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 0, 0, 0.4);
}

.btn-add-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.1);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(219, 0, 0, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(219, 0, 0, 0.2);
    border-color: #db0000;
    color: #ffffff;
}

.pagination-btn.active {
    background: #db0000;
    border-color: #db0000;
    color: #ffffff;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.empty-state i {
    font-size: 4rem;
    color: rgba(219, 0, 0, 0.3);
    margin-bottom: 20px;
    display: block;
}

.empty-state h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Banner carousel - esconder setas SEMPRE na página de produtos */
.banners-carousel-section {
    overflow: hidden !important;
    position: relative;
}

/* Esconder setas do banner carousel completamente */
.banners-carousel-section .slick-prev,
.banners-carousel-section .slick-next,
.banners-carousel-section .slick-arrow,
#bannersCarousel .slick-prev,
#bannersCarousel .slick-next,
#bannersCarousel .slick-arrow,
.banners-carousel .slick-prev,
.banners-carousel .slick-next,
.banners-carousel .slick-arrow {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Tablets (até 992px) */
@media (max-width: 992px) {
    .products-page {
        padding: 30px 0 60px;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar-filters {
        position: relative;
        top: 0;
        order: 2; /* Sidebar depois dos produtos em mobile */
    }
    
    .products-main {
        order: 1;
    }
    
    /* Banner carousel overflow fix */
    .banners-carousel-section {
        overflow: hidden;
        width: 100%;
    }
    
    .banners-carousel-section .banners-carousel-wrapper {
        overflow: hidden;
    }
    
    .banners-carousel-section .slick-slider,
    .banners-carousel-section .slick-list,
    .banners-carousel-section .slick-track {
        overflow: hidden;
    }
    
    .banners-carousel-section .slick-prev,
    .banners-carousel-section .slick-next {
        display: none !important;
    }
}

/* Mobile médio (até 768px) */
@media (max-width: 768px) {
    .products-page {
        padding: 20px 0 40px;
    }
    
    /* Banner ajustes - fix setas saltando e altura */
    .banners-carousel-section {
        margin-bottom: 0;
        overflow: hidden !important;
        max-width: 100vw;
        width: 100%;
    }
    
    .banners-carousel-section .banners-carousel-wrapper,
    .banners-carousel-section .banners-carousel,
    .banners-carousel-section #bannersCarousel {
        overflow: hidden !important;
        max-width: 100%;
        width: 100%;
        height: auto !important;
    }
    
    .banners-carousel-section .slick-slider,
    .banners-carousel-section .slick-list,
    .banners-carousel-section .slick-track {
        overflow: hidden !important;
    }
    
    .banners-carousel-section .banner-slide,
    .banners-carousel-section .banner-slide img,
    .banners-carousel-section .banner-image {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        object-fit: cover;
    }
    
    /* Esconder setas completamente em mobile */
    .banners-carousel-section .slick-prev,
    .banners-carousel-section .slick-next,
    .banners-carousel-section .slick-arrow,
    #bannersCarousel .slick-prev,
    #bannersCarousel .slick-next,
    .banners-carousel .slick-prev,
    .banners-carousel .slick-next,
    .slick-prev,
    .slick-next {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        left: -9999px !important;
        right: auto !important;
    }
    
    /* Sidebar como acordeão colapsível */
    .sidebar-filters {
        padding: 16px;
        border-radius: 10px;
    }
    
    .filter-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .filter-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    /* Categorias em scroll horizontal */
    .category-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .category-item {
        width: auto;
    }
    
    .category-link {
        padding: 8px 12px;
        font-size: 0.85rem;
        border: 1px solid rgba(219, 0, 0, 0.2);
        border-radius: 20px;
        white-space: nowrap;
    }
    
    .category-link.active {
        border-left: none;
        padding-left: 12px;
        border-color: #db0000;
        background: rgba(219, 0, 0, 0.3);
    }
    
    .category-count {
        font-size: 0.75rem;
        margin-left: 4px;
    }
    
    /* Checkboxes em linha */
    .filter-section:last-child {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-section:last-child .filter-title {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .filter-checkbox {
        padding: 10px 14px;
        border: 1px solid rgba(219, 0, 0, 0.2);
        border-radius: 8px;
        flex: 1;
        min-width: 140px;
    }
    
    .filter-checkbox label {
        font-size: 0.8rem;
        padding-left: 28px;
    }
    
    .filter-checkbox label::before {
        width: 18px;
        height: 18px;
    }
    
    .filter-checkbox label::after {
        left: 5px;
        width: 7px;
        height: 10px;
    }
    
    /* Toolbar */
    .products-toolbar {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .products-count {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .custom-select-wrapper {
        max-width: 100%;
    }
    
    .custom-select-trigger {
        padding: 10px 36px 10px 14px;
        font-size: 0.9rem;
    }
    
    /* Grid de produtos */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }
    
    /* Cards de produto */
    .product-card {
        border-radius: 10px;
    }
    
    .product-image-wrapper {
        height: 140px;
    }
    
    .product-badges {
        top: 6px;
        left: 6px;
        gap: 4px;
    }
    
    .product-badge {
        padding: 2px 6px;
        font-size: 0.65rem;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-title {
        font-size: 0.8rem;
        margin-bottom: 6px;
        -webkit-line-clamp: 2;
    }
    
    .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        margin-bottom: 8px;
    }
    
    .product-price-current {
        font-size: 1rem;
    }
    
    .product-price-original {
        font-size: 0.75rem;
    }
    
    .product-price-discount {
        font-size: 0.7rem;
    }
    
    .product-rating {
        margin-bottom: 8px;
    }
    
    .product-rating i {
        font-size: 0.7rem;
    }
    
    .product-rating span {
        font-size: 0.7rem;
    }
    
    .btn-add-cart {
        padding: 8px;
        font-size: 0.75rem;
        gap: 4px;
    }
    
    .btn-add-cart span {
        display: none; /* Esconder texto em mobile, só ícone */
    }
    
    .btn-add-cart i {
        font-size: 1.1rem;
    }
    
    /* Empty state */
    .empty-state {
        padding: 40px 15px;
    }
    
    .empty-state i {
        font-size: 3rem;
    }
    
    .empty-state h3 {
        font-size: 1.2rem;
    }
    
    .empty-state p {
        font-size: 0.9rem;
    }
    
    /* Busca na sidebar */
    .sidebar-search-input {
        padding: 10px 38px 10px 14px;
        font-size: 0.85rem;
    }
    
    .search-input-wrapper .search-icon {
        font-size: 1rem;
        right: 12px;
    }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
    .products-page {
        padding: 15px 0 30px;
    }
    
    .products-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Sidebar ainda mais compacta */
    .sidebar-filters {
        padding: 12px;
        border-radius: 8px;
    }
    
    .filter-section {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .filter-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .filter-title i {
        font-size: 1rem;
    }
    
    /* Categorias menores */
    .category-link {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    /* Checkboxes mais compactos */
    .filter-checkbox {
        padding: 8px 10px;
        min-width: 120px;
    }
    
    .filter-checkbox label {
        font-size: 0.75rem;
        padding-left: 24px;
    }
    
    .filter-checkbox label::before {
        width: 16px;
        height: 16px;
    }
    
    /* Grid de produtos */
    .products-grid {
        gap: 10px;
    }
    
    /* Cards ainda mais compactos */
    .product-image-wrapper {
        height: 120px;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-title {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    
    .product-price-current {
        font-size: 0.9rem;
    }
    
    .product-price-original {
        font-size: 0.7rem;
    }
    
    .product-rating {
        margin-bottom: 6px;
    }
    
    .product-rating i {
        font-size: 0.6rem;
    }
    
    .product-rating span {
        font-size: 0.65rem;
    }
    
    .btn-add-cart {
        padding: 6px;
    }
    
    .btn-add-cart i {
        font-size: 1rem;
    }
    
    /* Badges menores */
    .product-badge {
        padding: 2px 5px;
        font-size: 0.6rem;
    }
    
    /* Toolbar */
    .products-count {
        font-size: 0.8rem;
    }
    
    .custom-select-trigger {
        padding: 8px 32px 8px 12px;
        font-size: 0.85rem;
    }
    
    /* Empty state */
    .empty-state {
        padding: 30px 10px;
    }
    
    .empty-state i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .empty-state h3 {
        font-size: 1.1rem;
    }
    
    .empty-state p {
        font-size: 0.85rem;
    }
}

/* Mobile muito pequeno (até 360px) */
@media (max-width: 360px) {
    .products-container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .products-grid {
        gap: 8px;
    }
    
    .product-image-wrapper {
        height: 100px;
    }
    
    .product-info {
        padding: 6px;
    }
    
    .product-title {
        font-size: 0.7rem;
    }
    
    .product-price-current {
        font-size: 0.85rem;
    }
    
    .btn-add-cart {
        padding: 5px;
    }
    
    .btn-add-cart i {
        font-size: 0.9rem;
    }
    
    /* Filtros ainda mais compactos */
    .filter-checkbox {
        min-width: 100%;
    }
    
    .category-link {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
}
