        /* ===== ESTILOS GLOBAIS ===== */
        :root {
            --aqvex-primary: #A435F0; 
            --aqvex-secondary: #6c757d;
            --aqvex-success: #28a745;
            --aqvex-danger: #dc3545;
            --aqvex-warning: #ffc107;
            --aqvex-info: #17a2b8;
            --aqvex-light: #f8f9fa;
            --aqvex-dark: #343a40;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        
        .page-link.active{
            background-color: var(--aqvex-primary);

        }
        .page-link {
            /* z-index: 3; */
            color: var(--aqvex-primary);
            /* background-color: var(--aqvex-primary); */
            /* border-color: var(---aqvex-primary); */
        }

        .pagination {
            --bs-pagination-color:var(--aqvex-primary);
            --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(245, 13, 253, 0.233);
            --bs-pagination-active-bg: var(--aqvex-primary);
            --bs-pagination-active-border-color:var(--aqvex-primary);   
        
        }
        

        .btn-primary {
            --bs-btn-color: #fff;
            --bs-btn-bg: #A435F0;
            --bs-btn-border-color: #A435F0;
            --bs-btn-hover-color: #fff;
            --bs-btn-hover-bg: #8d31ca;
            --bs-btn-hover-border-color: #8d31ca;
            --bs-btn-focus-shadow-rgb: 49, 132, 253;
            --bs-btn-active-color: #fff;
            --bs-btn-active-bg: #8d31ca;
            --bs-btn-active-border-color: #8d31ca;
            --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
            --bs-btn-disabled-color: #fff;
            --bs-btn-disabled-bg: #A435F0;
            --bs-btn-disabled-border-color: #A435F0;
        }


        /* ===== HEADER STYLES ===== */
        .aqvex-navbar {
            background-color: #ffffff;
            border-bottom: 1px solid #e0e0e0;
            padding: 0.5rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .aqvex-logo {
            height: 40px;
            width: auto;
        }
        
        .aqvex-search {
            max-width: auto;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 8px 16px;
        }
        
        .aqvex-search:focus {
            border-color: var(--aqvex-primary);
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }
        
        .aqvex-categories {
            background-color: var(--aqvex-light);
            padding: 0.5rem 0;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .category-item {
            display: inline-block;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem;
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 20px;
            text-decoration: none;
            color: #333;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .category-item:hover,
        .category-item.active {
            background-color: var(--aqvex-primary);
            color: #ffffff;
            text-decoration: none;
        }
        
        .login-link {
            color: #333;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .login-link:hover {
            color: var(--aqvex-primary);
            text-decoration: none;
        }
        
        /* ===== CAROUSEL STYLES ===== */
        .aqvex-carousel {
            height: 400px;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 400px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-content {
            text-align: center;
            color: white;
            z-index: 2;
        }
        
        .carousel-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .carousel-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            letter-spacing: 2px;
        }
        
        .carousel-btn {
            background-color: var(--aqvex-success);
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .carousel-btn:hover {
            background-color: #218838;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .slide-denim {
            background: linear-gradient(135deg, #4a90e2, #7bb3f0);
        }
        
        .slide-leveza {
            background: linear-gradient(135deg, #2ecc71, #58d68d);
        }
        
        .slide-elegancia {
            background: linear-gradient(135deg, #e74c3c, #ec7063);
        }
        
        /* ===== MAIN CONTENT LAYOUT ===== */
        .main-content {
            display: flex;
            min-height: calc(100vh - 200px);
        }
        
        .content-area {
            flex: 1;
            padding: 1rem;
        }
        
        /* ===== SIDEBAR STYLES ===== */
        .aqvex-sidebar {
            background-color: var(--aqvex-light);
            border-right: 1px solid #e0e0e0;
            width: 300px;
            padding: 1rem;
            overflow-y: auto;
        }
        
        .filter-section {
            margin-bottom: 1.5rem;
        }
        
        .filter-title {
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            border-bottom: 2px solid var(--aqvex-primary);
            padding-bottom: 0.5rem;
        }
        
        .filter-search {
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 8px 16px;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .filter-item {
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
            transition: background-color 0.2s ease;
        }
        
        .filter-item:hover {
            background-color: rgba(0, 123, 255, 0.05);
        }
        
        .filter-checkbox {
            margin-right: 0.75rem;
        }
        
        .filter-label {
            flex-grow: 1;
            margin: 0;
            font-size: 0.9rem;
            color: #555;
            cursor: pointer;
        }
        
        .filter-count {
            background-color: var(--aqvex-primary);
            color: white;
            border-radius: 12px;
            padding: 2px 8px;
            font-size: 0.75rem;
            font-weight: bold;
        }
        
        .sort-section {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }
        
        /* ===== PRODUCTS GRID STYLES ===== */
        .products-container {
            padding: 1rem 0;
            background-color: var(--aqvex-light);
        }
        
        .product-card {
            background: white;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .product-image {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--aqvex-danger);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: bold;
            z-index: 2;
        }
        
        .product-favorite {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 2;
        }
        
        .product-info {
            padding: 1.25rem;
        }
        
        .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
            text-decoration: none;
            display: block;
        }
        
        .product-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--aqvex-success);
            margin-bottom: 0.75rem;
        }
        
        .product-colors {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .color-option {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #fff;
            box-shadow: 0 0 0 1px #ddd;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        
        .color-option:hover {
            transform: scale(1.2);
        }
        
        .color-option.active {
            box-shadow: 0 0 0 2px var(--aqvex-primary);
        }
        
        /* ===== FOOTER STYLES ===== */
        .aqvex-footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1rem 0;
            margin-top: 4rem;
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #A435F0;
        }
        
        .footer-link {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }
        
        .footer-link:hover {
            color: #A435F0;
            text-decoration: none;
            padding-left: 5px;
        }
        
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1);
            color: white;
            text-decoration: none;
        }
        

        /* Ajustes para melhor visualização em 2 colunas no mobile */
@media (max-width: 576px) {
    .aqvex-navbar {
        padding: 0.3rem 0;
    }

    .aqvex-logo {
        height: 30px;
    }

    .carousel-title {
        font-size: 1.5rem;
    }

    .product-image {
        height: 180px; /* Reduzido um pouco para acomodar 2 colunas */
    }
    
    .product-info {
        padding: 1rem; /* Padding menor no mobile */
    }
    
    .product-title {
        font-size: 1rem; /* Fonte um pouco menor */
    }
    
    .product-price {
        font-size: 1.1rem; /* Preço um pouco menor */
    }
    
    .content-area {
        padding: 0.5rem; /* Padding menor na área de conteúdo */
    }
}

 #aqvexCarousel{
                display: none;
            }

        /* ===== RESPONSIVIDADE ===== */
        @media (max-width: 992px) {
            .main-content {
                flex-direction: column;
            }
            
            .aqvex-sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
            }

           
        }
        
        @media (max-width: 768px) {
            .aqvex-search {
                max-width: 100%;
                margin: 0.5rem 0;
            }
            
            .category-item {
                margin: 0.2rem;
                padding: 0.3rem 0.8rem;
                font-size: 0.8rem;
            }
            
            .carousel-title {
                font-size: 2rem;
            }
            
            .carousel-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .product-image {
                height: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .aqvex-navbar {
                padding: 0.3rem 0;
            }
            
            .aqvex-logo {
                height: 30px;
            }

            #aqvexCarousel{
                display: none;
            }

            .aqvex-footer{
                display: none;
            }
            
            /* .carousel-title {
                font-size: 1.5rem;
            } */
            .categories-container{
                max-height: 30px;
            }
            .product-image {
                height: 200px;
            }
        }


        /* ===== CATEGORIES STYLES ===== */
.aqvex-categories {
    background-color: var(--aqvex-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    height: 70px; /* Altura fixa */
    display: flex;
    align-items: center;
}

.categories-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.categories-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 0.5rem;
    padding: 0.5rem 0;
    flex: 1;
    align-items: center;
    
    /* Esconder scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.categories-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari e Opera */
}

.category-item {
    display: inline-block;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Evita que os itens encolham */
}

.category-item:hover,
.category-item.active {
    background-color: var(--aqvex-primary);
    color: #ffffff;
    text-decoration: none;
}

.categories-scroll-btn {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    margin: 0 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.categories-scroll-btn:hover {
    background-color: var(--aqvex-primary);
    color: white;
    border-color: var(--aqvex-primary);
}

.categories-scroll-left {
    order: -1;
}

.categories-scroll-right {
    order: 1;
}

/* Responsividade para categorias */
@media (max-width: 768px) {
    .aqvex-categories {
        height: 60px; /* Altura menor no mobile */
    }
    
    .categories-scroll-btn {
        width: 35px;
        height: 35px;
        margin: 0 0.3rem;
    }
    
    .category-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .categories-scroll-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

