   /* === BREADCRUMB MODERNE === */
        .breadcrumb-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-shape.shape-1 {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #136855, #3ddc84);
            top: -60px;
            right: 10%;
            animation-delay: 0s;
        }

        .floating-shape.shape-2 {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3ddc84, #136855);
            bottom: -40px;
            left: 15%;
            animation-delay: 2s;
        }

        .floating-shape.shape-3 {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #136855, #3ddc84);
            top: 50%;
            right: 5%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .asg-breadcrumb-container {
            position: relative;
            z-index: 1;
        }

        .asg-breadcrumb {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            box-shadow: 0 8px 32px rgba(19, 104, 85, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .asg-breadcrumb:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(19, 104, 85, 0.15);
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .breadcrumb-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #136855, #3ddc84);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(19, 104, 85, 0.3);
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            margin: 0;
            padding: 0;
            list-style: none;
            gap: 0.75rem;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
        }

        .breadcrumb-link {
            color: #6c757d;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .breadcrumb-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(19, 104, 85, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .breadcrumb-link:hover::before {
            left: 100%;
        }

        .breadcrumb-link:hover {
            color: #136855;
            background: rgba(19, 104, 85, 0.05);
            text-decoration: none;
            transform: translateY(-1px);
        }

        .breadcrumb-separator {
            color: #dee2e6;
            font-size: 0.75rem;
            margin: 0 0.25rem;
        }

        .breadcrumb-current {
            color: #136855;
            font-weight: 700;
            background: linear-gradient(135deg, rgba(19, 104, 85, 0.1), rgba(61, 220, 132, 0.1));
            padding: 0.5rem 1rem;
            border-radius: 8px;
            border: 1px solid rgba(19, 104, 85, 0.2);
        }

        .category-badge {
            background: linear-gradient(135deg, rgba(19, 104, 85, 0.9), rgba(61, 220, 132, 0.8));
            color: white;
            padding: 0.75rem 1.25rem;
            border-radius: 25px;
            font-size: 0.875rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 8px 32px rgba(19, 104, 85, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            animation: pulseGlass 2s infinite;
        }

        .category-badge:hover {
            transform: translateY(-1px);
            box-shadow: 
                0 12px 40px rgba(19, 104, 85, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }

        @keyframes pulseGlass {
            0% { 
                transform: scale(1); 
                box-shadow: 
                    0 8px 32px rgba(19, 104, 85, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            }
            50% { 
                transform: scale(1.05); 
                box-shadow: 
                    0 12px 40px rgba(19, 104, 85, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            }
            100% { 
                transform: scale(1); 
                box-shadow: 
                    0 8px 32px rgba(19, 104, 85, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            }
        }

        .category-header {
            text-align: center;
            margin-top: 2rem;
        }

        .category-title {
            color: #136855;
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .category-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #136855, #3ddc84);
            border-radius: 2px;
        }

        .category-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin: 0;
            max-width: 600px;
            margin: 1rem auto 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .asg-breadcrumb {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

            .breadcrumb-content {
                flex-direction: column;
                gap: 0.75rem;
            }

            .breadcrumb-list {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
            }

            .category-title {
                font-size: 1.75rem;
            }

            .category-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .floating-shape {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .breadcrumb-link,
            .breadcrumb-current {
                padding: 0.25rem 0.5rem;
                font-size: 0.875rem;
            }

            .category-badge {
                padding: 0.375rem 0.75rem;
                font-size: 0.75rem;
            }
        }
    </style>
    <!-- Breadcrumb End -->

    <style>
        /* === PANIER FLOTTANT MODERNE === */
        .asg-floating-cart {
            position: fixed;
            bottom: 120px;
            right: 28px;
            z-index: 99999;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .asg-cart-button {
            background: linear-gradient(135deg, #136855 0%, #1a7a64 100%);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 20px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 14px;
            min-width: 130px;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(19, 104, 85, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .asg-cart-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .asg-cart-button:hover::before {
            left: 100%;
        }

        .asg-cart-button:hover {
            background: linear-gradient(135deg, #0a4038 0%, #136855 100%);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(19, 104, 85, 0.4);
            color: white;
            text-decoration: none;
        }

        .asg-cart-empty {
            background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 20px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 14px;
            min-width: 130px;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
            transition: all 0.3s ease;
        }

        .asg-cart-empty:hover {
            background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(108, 117, 125, 0.4);
            color: white;
            text-decoration: none;
        }

        .asg-cart-icon,
        .asg-cart-empty-icon {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .asg-cart-button:hover .asg-cart-icon,
        .asg-cart-empty:hover .asg-cart-empty-icon {
            transform: scale(1.1);
        }

        .asg-cart-badge {
            background: #ff6b35;
            color: white;
            border-radius: 50%;
            width: 25px !important;
            height: 25px !important;
            font-size: 12px !important;
            font-weight: 700 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            position: absolute !important;
            top: -8px !important;
            right: -8px !important;
            border: 3px solid white !important;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4) !important;
            animation: cartPulse 2s infinite;
        }

        @keyframes cartPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .asg-cart-button.cart-updated {
            animation: cartShake 0.5s ease-in-out;
        }

        @keyframes cartShake {
            0%, 100% { transform: translateY(-3px) translateX(0); }
            25% { transform: translateY(-3px) translateX(-3px); }
            75% { transform: translateY(-3px) translateX(3px); }
        }

        /* Responsive pour le panier */
        @media (max-width: 768px) {
            .asg-floating-cart {
                bottom: 100px;
                right: 20px;
            }
            
            .asg-cart-button,
            .asg-cart-empty {
                padding: 12px 16px;
                font-size: 12px;
                min-width: 100px;
            }
            
            .asg-cart-icon,
            .asg-cart-empty-icon {
                font-size: 16px;
            }
            
            .asg-cart-badge {
                width: 22px !important;
                height: 22px !important;
                font-size: 11px !important;
                top: -6px !important;
                right: -6px !important;
            }
        }

        @media (max-width: 576px) {
            .asg-cart-button span,
            .asg-cart-empty span {
                display: none !important;
            }
            
            .asg-cart-button,
            .asg-cart-empty {
                min-width: 50px;
                padding: 12px;
                border-radius: 50%;
            }
        }
    </style>

    <style>
        /* === CARTES PRODUITS MODERNES === */
        .asg-modern-card {
            border-radius: 16px;
            border: none;
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            position: relative;
        }

        .asg-modern-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(19, 104, 85, 0.15);
        }

        .asg-card-image {
            position: relative;
            overflow: hidden;
            border-radius: 16px 16px 0 0;
        }

        .asg-card-image img {
            transition: transform 0.3s ease;
            border-radius: 12px;
            margin: 8px;
            height: 350px;
            width: calc(100% - 16px);
            object-fit: cover;
            object-position: center;
            background: #f8f9fa;
            display: block;
            will-change: transform;
            backface-visibility: hidden;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .asg-modern-card:hover .asg-card-image img {
            transform: scale(1.05);
        }

        /* Badges pour statut et stock avec effet glass moderne */
        .asg-stock-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 8px 14px;
            border-radius: 25px;
            font-size: 11px;
            font-weight: 600;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 5px;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .asg-stock-badge:hover {
            transform: translateY(-1px);
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }

        .asg-stock-badge.disponible {
            background: rgba(76, 175, 80, 0.85);
            color: white;
            border: 1px solid rgba(76, 175, 80, 0.4);
        }

        .asg-stock-badge.stock-bas {
            background: rgba(255, 152, 0, 0.85);
            color: white;
            border: 1px solid rgba(255, 152, 0, 0.4);
        }

        .asg-stock-badge.epuise,
        .asg-stock-badge.épuisé {
            background: rgba(244, 67, 54, 0.85);
            color: white;
            border: 1px solid rgba(244, 67, 54, 0.4);
        }

        .asg-status-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, rgba(19, 104, 85, 0.9), rgba(61, 220, 132, 0.8));
            color: white;
            padding: 8px 14px;
            border-radius: 25px;
            font-size: 11px;
            font-weight: 600;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 5px;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 8px 32px rgba(19, 104, 85, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .asg-status-badge:hover {
            transform: translateY(-1px);
            box-shadow: 
                0 12px 40px rgba(19, 104, 85, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }

        /* Overlay et actions */
        .asg-hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(19, 104, 85, 0.8), rgba(61, 220, 132, 0.6));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .asg-modern-card:hover .asg-hover-overlay {
            opacity: 1;
        }

        .asg-card-actions {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            gap: 15px;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 4;
        }

        .asg-modern-card:hover .asg-card-actions {
            opacity: 1;
            transform: translate(-50%, -50%) translateY(0);
        }

        .asg-action-simple {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #136855;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .asg-action-simple:hover {
            background: #136855;
            color: white;
            transform: scale(1.1);
            text-decoration: none;
        }

        .asg-action-simple.asg-whatsapp:hover {
            background: #25D366;
            color: white;
        }

        .asg-action-simple i {
            font-size: 18px;
        }

        /* Contenu de la carte */
        .asg-card-content {
            padding: 1.5rem;
        }

        .asg-product-name {
            color: #2c3e50;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
            display: block;
            line-height: 1.4;
        }

        .asg-product-name:hover {
            color: #136855;
            text-decoration: none;
        }

        .asg-price-container {
            margin-top: 1rem;
        }

        .asg-price {
            color: #136855;
            font-weight: 700;
            font-size: 1.25rem;
            margin: 0;
        }

        /* Animation d'apparition */
        .product-card-animate {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .product-card-animate:nth-child(1) { animation-delay: 0.1s; }
        .product-card-animate:nth-child(2) { animation-delay: 0.2s; }
        .product-card-animate:nth-child(3) { animation-delay: 0.3s; }
        .product-card-animate:nth-child(4) { animation-delay: 0.4s; }
        .product-card-animate:nth-child(5) { animation-delay: 0.5s; }
        .product-card-animate:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .asg-card-actions {
                gap: 10px;
            }

            .asg-action-simple {
                width: 45px;
                height: 45px;
            }

            .asg-action-simple i {
                font-size: 16px;
            }

            .asg-stock-badge,
            .asg-status-badge {
                font-size: 10px;
                padding: 4px 8px;
            }
        }

        /* === MESSAGE AUCUN PRODUIT === */
        .asg-no-products {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            margin: 2rem 0;
            border: 2px dashed #dee2e6;
        }

        .asg-no-products h3 {
            color: #6c757d;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .asg-no-products p {
            color: #868e96;
            font-size: 1rem;
        }

        /* === PAGINATION FUTURISTE === */
        .asg-pagination-container {
            background: linear-gradient(135deg, rgba(19, 104, 85, 0.05) 0%, rgba(61, 220, 132, 0.05) 100%);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 8px 32px rgba(19, 104, 85, 0.1);
            border: 1px solid rgba(19, 104, 85, 0.1);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .asg-pagination-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .asg-results-count {
            background: rgba(19, 104, 85, 0.1);
            color: #136855;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(19, 104, 85, 0.2);
        }

        .asg-pagination-nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .asg-pagination {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .asg-page-item {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .asg-page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 45px;
            height: 45px;
            padding: 0.5rem 1rem;
            text-decoration: none;
            color: #136855;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            border: 1px solid rgba(19, 104, 85, 0.2);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .asg-page-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(19, 104, 85, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .asg-page-link:hover::before {
            left: 100%;
        }

        .asg-page-link:hover {
            background: linear-gradient(135deg, #136855, #3ddc84);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(19, 104, 85, 0.3);
            text-decoration: none;
        }

        .asg-page-item.active .asg-page-link {
            background: linear-gradient(135deg, #136855, #3ddc84);
            color: white;
            box-shadow: 0 4px 15px rgba(19, 104, 85, 0.4);
            animation: activePage 0.3s ease;
        }

        @keyframes activePage {
            0% { transform: scale(0.9); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .asg-page-item.asg-dots .asg-page-link {
            background: transparent;
            border: none;
            color: #6c757d;
            cursor: default;
        }

        .asg-page-item.asg-dots .asg-page-link:hover {
            background: transparent;
            transform: none;
            box-shadow: none;
        }

        .asg-prev,
        .asg-next {
            gap: 0.5rem;
            padding: 0.75rem 1.5rem !important;
            min-width: auto !important;
        }

        .asg-page-jump {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .asg-page-jump label {
            color: #136855;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .asg-page-select {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(19, 104, 85, 0.3);
            border-radius: 8px;
            padding: 0.5rem 1rem;
            color: #136855;
            font-weight: 600;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .asg-page-select:focus {
            outline: none;
            border-color: #136855;
            box-shadow: 0 0 0 3px rgba(19, 104, 85, 0.1);
        }

        /* Responsive pagination */
        @media (max-width: 768px) {
            .asg-pagination-container {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                padding: 1.5rem;
            }

            .asg-pagination-info {
                order: 3;
                width: 100%;
                justify-content: center;
            }

            .asg-pagination-nav {
                order: 1;
                width: 100%;
            }

            .asg-pagination {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.25rem;
            }

            .asg-page-link {
                min-width: 40px;
                height: 40px;
                font-size: 0.8rem;
                padding: 0.25rem 0.5rem;
            }

            .asg-prev,
            .asg-next {
                padding: 0.5rem 1rem !important;
            }

            .asg-prev span,
            .asg-next span {
                display: none;
            }

            .asg-page-jump {
                order: 2;
                width: 100%;
                justify-content: center;
            }

            .asg-results-count {
                font-size: 0.8rem;
                padding: 0.5rem 1rem;
            }
        }

        @media (max-width: 576px) {
            .asg-pagination {
                gap: 0.1rem;
            }

            .asg-page-link {
                min-width: 35px;
                height: 35px;
                font-size: 0.75rem;
            }
        }