/* Animations de base pour le scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animations spécifiques */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .fade-in-up.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.7s ease-out;
        }

        .fade-in-left.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.7s ease-out;
        }

        .fade-in-right.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s ease-out;
        }

        .scale-in.animate-in {
            opacity: 1;
            transform: scale(1);
        }

        /* Animations pour les cartes de produits */
        .product-card-animate {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: all 0.6s ease-out;
        }

        .product-card-animate.animate-in {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Animation pour les catégories */
        .category-animate {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.5s ease-out;
        }

        .category-animate.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        /* Animation pour les features */
        .feature-animate {
            opacity: 0;
            transform: translateY(25px);
            transition: all 0.6s ease-out;
        }

        .feature-animate.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animation pour les boutiques */
        .boutique-animate {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.7s ease-out;
        }

        .boutique-animate.animate-in {
            opacity: 1;
            transform: scale(1);
        }

        /* Animation pour les titres de section */
        .section-title-animate {
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.8s ease-out;
        }

        .section-title-animate.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Délais d'animation échelonnés */
        .delay-1 {
            transition-delay: 0.1s;
        }

        .delay-2 {
            transition-delay: 0.2s;
        }

        .delay-3 {
            transition-delay: 0.3s;
        }

        .delay-4 {
            transition-delay: 0.4s;
        }

        .delay-5 {
            transition-delay: 0.5s;
        }

        .delay-6 {
            transition-delay: 0.6s;
        }

        /* Animation hover améliorée pour les produits */
        .product-item {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        /* Animation hover pour les catégories */
        .cat-item {
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .cat-item:hover {
            transform: translateX(5px);
            background-color: #f8f9fa;
        }

        /* Animation pour le carousel */
        .carousel-caption>div {
            animation: slideInFromBottom 1s ease-out;
        }

        @keyframes slideInFromBottom {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animation fluide pour les icônes */
        .feature-icon {
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .feature-icon:hover {
            transform: scale(1.1) rotate(5deg);
        }

        /* Responsive pour les animations */
        @media (max-width: 768px) {

            .animate-on-scroll,
            .fade-in-up,
            .fade-in-left,
            .fade-in-right,
            .scale-in {
                transform: translateY(20px);
            }

            .fade-in-left,
            .fade-in-right {
                transform: translateY(20px);
            }
        }






        form.example input[type=text] {
            padding: 10px;
            font-size: 17px;
            border: 1px solid grey;
            float: left;
            width: 80%;
            background: #f1f1f1;
        }

        form.example button {
            float: left;
            width: 20%;
            padding: 10px;
            background: #136855;
            color: white;
            font-size: 17px;
            border: 1px solid grey;
            border-left: none;
            cursor: pointer;
        }

        form.example button:hover {
            background: yellow;
            color: #136855;
        }

        form.example::after {
            content: "";
            clear: both;
            display: table;
        }



        /* Styles pour le carousel moderne */
        .assoug-enhanced-carousel {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        /* Indicateurs modernes */
        .modern-indicators {
            bottom: 20px;
            margin-bottom: 0;
        }

        .modern-indicators li {
            width: 60px;
            height: 6px;
            border-radius: 3px;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .modern-indicators li.active {
            background-color: #136855;
            width: 80px;
        }

        .indicator-title {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 10px;
            color: white;
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.3s ease;
            white-space: nowrap;
        }

        .modern-indicators li:hover .indicator-title {
            opacity: 1;
        }

        /* Boutons de navigation modernes */
        .modern-nav-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9) !important;
            border-radius: 50% !important;
            border: none !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            transition: all 0.3s ease !important;
            opacity: 1 !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            position: absolute !important;
            z-index: 10 !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
        }

        .assoug-enhanced-carousel:hover .modern-nav-btn {
            opacity: 1 !important;
        }

        .modern-nav-btn:hover {
            background: rgba(19, 104, 85, 0.9) !important;
            transform: translateY(-50%) scale(1.1) !important;
        }

        .nav-btn-content {
            color: #136855;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .modern-nav-btn:hover .nav-btn-content {
            color: white;
        }

        .carousel-control-prev {
            left: 20px !important;
            justify-content: flex-start !important;
        }

        .carousel-control-next {
            right: 20px !important;
            justify-content: flex-end !important;
        }

        /* Slides modernes */
        .modern-slide {
            position: relative;
            overflow: hidden;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(19, 104, 85, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
            z-index: 1;
        }

        .promo-overlay {
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
        }

        .niger-overlay {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
        }

        .slide-image {
            object-fit: cover;
            object-position: center;
        }

        /* Contenu des slides */
        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .slide-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.9);
            color: #136855;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .promo-badge {
            background: rgba(220, 53, 69, 0.9);
            color: white;
        }

        .niger-badge {
            background: rgba(255, 193, 7, 0.9);
            color: #333;
        }

        .slide-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideInFromTop 1s ease-out;
        }

        .slide-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            animation: slideInFromBottom 1s ease-out 0.3s both;
        }

        /* Boutons CTA modernes */
        .modern-cta-btn {
            background: linear-gradient(45deg, #136855, #0a4038);
            border: none;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(19, 104, 85, 0.3);
            animation: slideInFromBottom 1s ease-out 0.6s both;
            position: relative;
            overflow: hidden;
        }

        .modern-cta-btn::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.5s;
        }

        .modern-cta-btn:hover::before {
            left: 100%;
        }

        .modern-cta-btn:hover {
            background: linear-gradient(45deg, #0a4038, #136855);
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(19, 104, 85, 0.4);
            color: white;
        }

        .promo-btn {
            background: linear-gradient(45deg, #dc3545, #b02a37);
            box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
        }

        .promo-btn:hover {
            background: linear-gradient(45deg, #b02a37, #dc3545);
            box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
        }

        .niger-btn {
            background: linear-gradient(45deg, #ffc107, #e0a800);
            color: #333;
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
        }

        .niger-btn:hover {
            background: linear-gradient(45deg, #e0a800, #ffc107);
            color: #333;
            box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
        }

        /* Animations */
        @keyframes slideInFromTop {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInFromBottom {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* === SECTION FEATURED MODERNE === */
        .modern-feature-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            padding: 30px 25px;
            margin-bottom: 30px;
            text-align: center;
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.08),
                0 1px 8px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .modern-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #136855, #1a7a64, #0a4038);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .modern-feature-card:hover::before {
            transform: scaleX(1);
        }

        .modern-feature-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.12),
                0 8px 20px rgba(19, 104, 85, 0.1);
            border-color: rgba(19, 104, 85, 0.2);
        }

        .feature-icon-container {
            margin-bottom: 20px;
            position: relative;
        }

        .feature-icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            font-size: 28px;
            color: white;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .quality-icon {
            background: linear-gradient(135deg, #136855 0%, #1a7a64 50%, #0a4038 100%);
        }

        .delivery-icon {
            background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
        }

        .trust-icon {
            background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 50%, #fd7e14 100%);
        }

        .support-icon {
            background: linear-gradient(135deg, #007bff 0%, #6610f2 50%, #6f42c1 100%);
        }

        .modern-feature-card:hover .feature-icon-circle {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }

        .feature-icon-circle i {
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .feature-content {
            position: relative;
            z-index: 2;
        }

        .feature-title {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .modern-feature-card:hover .feature-title {
            color: #136855;
        }

        .feature-description {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 15px;
            line-height: 1.5;
            font-weight: 400;
        }

        .feature-stats {
            font-size: 12px;
            font-weight: 600;
            color: #136855;
            background: rgba(19, 104, 85, 0.1);
            padding: 6px 12px;
            border-radius: 15px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .modern-feature-card:hover .feature-stats {
            background: rgba(19, 104, 85, 0.15);
            transform: scale(1.05);
        }

        /* Animation d'apparition améliorée */
        .feature-animate {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-animate.animate-in {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Responsive pour les features */
        @media (max-width: 768px) {
            .feature-title {
                font-size: 18px;
            }

            .feature-description {
                font-size: 14px;
            }

            .feature-stats {
                font-size: 13px;
            }
        }

        @media (max-width: 576px) {
            .feature-title {
                font-size: 17px;
            }

            .feature-description {
                font-size: 13px;
            }

            .feature-stats {
                font-size: 12px;
            }
        }




        /* === CORRECTION COMPLÈTE DES BOUTONS CAROUSEL === */

        /* Réinitialisation complète des styles Bootstrap */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px !important;
            height: 50px !important;
            background: rgba(255, 255, 255, 0.95) !important;
            border-radius: 50% !important;
            border: 2px solid rgba(19, 104, 85, 0.2) !important;
            opacity: 1 !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
            z-index: 10 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        /* Positionnement spécifique */
        .carousel-control-prev {
            left: 15px !important;
        }

        .carousel-control-next {
            right: 15px !important;
        }

        /* Suppression des styles Bootstrap par défaut */
        .carousel-control-prev:focus,
        .carousel-control-prev:hover,
        .carousel-control-next:focus,
        .carousel-control-next:hover {
            color: transparent !important;
            text-decoration: none !important;
            outline: 0 !important;
            background: rgba(19, 104, 85, 0.9) !important;
            border-color: #136855 !important;
            transform: translateY(-50%) scale(1.05) !important;
        }

        /* Icônes personnalisées */
        .carousel-control-prev .nav-btn-content,
        .carousel-control-next .nav-btn-content {
            color: #136855 !important;
            font-size: 18px !important;
            font-weight: bold !important;
            transition: color 0.3s ease !important;
        }

        .carousel-control-prev:hover .nav-btn-content,
        .carousel-control-next:hover .nav-btn-content {
            color: white !important;
        }

        /* Suppression des icônes Bootstrap par défaut */
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            display: none !important;
        }

        /* Animation au survol du carousel */
        .assoug-enhanced-carousel:hover .carousel-control-prev,
        .assoug-enhanced-carousel:hover .carousel-control-next {
            opacity: 1 !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
        }

        /* Responsive */
        @media (max-width: 768px) {

            .carousel-control-prev,
            .carousel-control-next {
                width: 40px !important;
                height: 40px !important;
            }

            .carousel-control-prev {
                left: 10px !important;
            }

            .carousel-control-next {
                right: 10px !important;
            }

            .nav-btn-content {
                font-size: 14px !important;
            }
        }

        /* Force l'affichage sur mobile tactile */
        @media (hover: none) and (pointer: coarse) {

            .carousel-control-prev,
            .carousel-control-next {
                opacity: 0.8 !important;
                background: rgba(19, 104, 85, 0.8) !important;
            }

            .nav-btn-content {
                color: white !important;
            }
        }

        /* === CSS SIMPLE POUR LES CATÉGORIES === */
        .asg-cat-item-wrapper {
            display: flex;
            align-items: center;
            padding: 15px;
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .asg-cat-item-wrapper:hover {
            background: #f8f9fa;
            border-color: #136855;
            text-decoration: none;
            color: inherit;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(19, 104, 85, 0.1);
        }

        .asg-cat-flex-container {
            display: flex;
            align-items: center;
        }

        .asg-cat-img-container {
            flex-shrink: 0;
            border-radius: 6px;
            overflow: hidden;
        }

        .asg-cat-overflow-hidden {
            overflow: hidden;
        }

        .asg-cat-img-fluid {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .asg-cat-img-zoom:hover .asg-cat-img-fluid {
            transform: scale(1.1);
        }

        .asg-cat-content-wrapper {
            flex: 1;
            padding-left: 15px;
        }

        .asg-cat-flex-fill {
            flex: 1;
        }

        .asg-cat-title-primary {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 16px;
        }

        .asg-cat-count-text {
            color: #6c757d;
            font-size: 14px;
        }

        /* Animations simples */
        .asg-cat-animate-fade {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .asg-cat-delay-1 {
            animation-delay: 0.1s;
        }

        .asg-cat-delay-2 {
            animation-delay: 0.2s;
        }

        .asg-cat-delay-3 {
            animation-delay: 0.3s;
        }

        .asg-cat-delay-4 {
            animation-delay: 0.4s;
        }

        .asg-cat-delay-5 {
            animation-delay: 0.5s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive pour les catégories */
        @media (max-width: 768px) {
            .asg-cat-item-wrapper {
                padding: 12px;
            }

            .asg-cat-content-wrapper {
                padding-left: 12px;
            }

            .asg-cat-title-primary {
                font-size: 15px;
            }

            .asg-cat-count-text {
                font-size: 13px;
            }
        }

        /* === TITRE SIMPLE ET ÉLÉGANT ALTERNATIVE === */
        .asg-simple-section-title {
            position: relative;
            margin-bottom: 40px;
            padding: 0 15px;
        }

        .asg-simple-title-wrapper {
            position: relative;
            display: inline-block;
        }

        .asg-simple-title-text {
            font-size: 32px;
            font-weight: 300;
            color: #2c3e50;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin: 0;
            padding: 0 20px 0 0;
            position: relative;
            background: white;
            z-index: 2;
        }

        .asg-simple-title-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e9ecef;
            z-index: 1;
        }

        .asg-simple-title-accent {
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #136855 0%, #1a7a64 100%);
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .asg-simple-section-title:hover .asg-simple-title-accent {
            width: 100px;
        }

        .asg-simple-title-number {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #136855;
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            z-index: 3;
        }

        /* Animation d'apparition simple */
        .asg-simple-animate {
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.8s ease-out 0.2s forwards;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive pour le titre simple */
        @media (max-width: 768px) {
            .asg-simple-title-text {
                font-size: 26px;
                letter-spacing: 2px;
            }

            .asg-simple-title-accent {
                width: 50px;
            }

            .asg-simple-section-title:hover .asg-simple-title-accent {
                width: 80px;
            }
        }

        @media (max-width: 576px) {
            .asg-simple-title-text {
                font-size: 22px;
                letter-spacing: 1px;
            }

            .asg-simple-title-accent {
                width: 40px;
                height: 2px;
            }

            .asg-simple-title-number {
                width: 20px;
                height: 20px;
                font-size: 10px;
            }
        }



        
/* === STYLES SPÉCIAUX POUR LES OFFRES SPÉCIALES === */

/* Prix barré en ROUGE */
.asg-old-price {
    font-size: 14px;
    opacity: 1; /* Augmenté pour plus de visibilité */
}

.asg-old-price del {
    color: #dc3545 !important; /* Rouge pour le prix barré */
    font-weight: 600 !important;
    text-decoration: line-through !important;
}

/* Badge de réduction en VERT */
.asg-discount-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important; /* Gradient vert */
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    margin-top: 10px;
}

.asg-discount-percent {
    font-weight: 700;
    font-size: 14px;
    color: white !important;
}

.asg-discount-text {
    font-size: 11px;
    opacity: 0.9;
    color: white !important;
}

/* Badge Promo spécial pour les offres */
.asg-promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(220, 53, 69, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 25px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Prix en promotion */
.asg-price-promo {
    color: green;
    font-weight: 800;
    font-size: 18px;
    margin: 0;
}

/* Animation spéciale pour les cartes d'offres */
.asg-modern-card:hover .asg-promo-badge {
    transform: scale(1.1) rotate(-5deg);
}

/* Overlay spécial pour les promos */
.asg-modern-card .asg-hover-overlay {
    background: linear-gradient(
        135deg, 
        rgba(220, 53, 69, 0.7) 0%, 
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* === BADGES STOCK POUR OFFRES === */
/* Utilise les mêmes styles que pour les articles */
.asg-stock-simple.disponible {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.asg-stock-simple.stock-bas {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

.asg-stock-simple.epuise,
.asg-stock-simple.épuisé {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Positionnement spécial pour les offres avec 2 badges */
.asg-stock-simple {
    top: 60px; /* Décalé vers le bas pour laisser place au badge promo */
    left: 12px;
}

/* === RESPONSIVE POUR OFFRES === */
@media (max-width: 768px) {
    .asg-promo-badge {
        top: 12px;
        right: 12px;
        padding: 5px 8px;
        font-size: 10px;
    }
    
    .asg-stock-simple {
        top: 50px;
        left: 10px;
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .asg-discount-badge {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .asg-price-promo {
        font-size: 16px;
    }
    
    .asg-old-price del {
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .asg-promo-badge {
        top: 10px;
        right: 10px;
        padding: 4px 6px;
        font-size: 9px;
    }
    
    .asg-stock-simple {
        top: 45px;
        left: 8px;
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .asg-old-price del {
        font-size: 12px !important;
    }
}


/* =====================
   RESPONSIVE CAROUSEL CONTENU (MOBILE)
   ===================== */
@media (max-width: 768px) {
  .assoug-enhanced-carousel {
    height: 450px !important;
    min-height: 400px;
    display: flex;
    align-items: center;
  }
  .carousel-caption {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
  }
  .slide-content {
    padding: 20px !important;
    max-width: 98vw !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .slide-badge {
    font-size: 20px !important;
    padding: 8px 15px !important;
    margin-bottom: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  .slide-title {
    font-size: 1.3rem !important;
    margin-bottom: 10px !important;
    word-break: break-word;
    line-height: 1.2 !important;
    padding: 0 2vw !important;
  }
  .slide-description {
    font-size: 0.95rem !important;
    margin-bottom: 12px !important;
    padding: 0 2vw !important;
    line-height: 1.3 !important;
    word-break: break-word;
  }
  .modern-cta-btn {
    font-size: 0.95rem !important;
    padding: 8px 18px !important;
    border-radius: 22px !important;
    min-width: 120px;
    margin-top: 10px !important;
  }
  .slide-badge i {
    font-size: 1.5em !important;
    margin-right: 5px;
  }
  /* Ajustement de la position de l'image */
  .carousel-item .slide-image {
    object-position: center;
  }
}
@media (max-width: 480px) {
  .assoug-enhanced-carousel {
    height: 380px !important;
    min-height: 320px;
  }
  .slide-title {
    font-size: 1.05rem !important;
    padding: 0 1vw !important;
  }
  .slide-description {
    font-size: 0.85rem !important;
    padding: 0 1vw !important;
  }
  .modern-cta-btn {
    font-size: 0.85rem !important;
    padding: 6px 10px !important;
    min-width: 90px;
  }
  .slide-badge {
    font-size: 11px !important;
    padding: 6px 12px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  .slide-badge i {
    font-size: 1.3em !important;
    margin-right: 4px;
  }
}


/* === CARTES PRODUITS MODERNES SIMPLIFIÉES === */

.asg-modern-card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.asg-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(19, 104, 85, 0.15);
    border-color: #136855;
}

.asg-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.asg-card-image img {
    transition: transform 0.4s ease;
    object-fit: cover;
    object-position: center;
}

.asg-modern-card:hover .asg-card-image img {
    transform: scale(1.05);
}

/* === BADGE STOCK SIMPLE === */

.asg-stock-simple {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.asg-stock-simple.en-stock {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.asg-stock-simple.stock-limité,
.asg-stock-simple.stock-limite {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

.asg-stock-simple.rupture,
.asg-stock-simple.rupture-de-stock {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* === OVERLAY ET ACTIONS === */

.asg-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 104, 85, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.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: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 4;
}

.asg-modern-card:hover .asg-card-actions {
    opacity: 1;
}

.asg-action-simple {
    width: 45px;
    height: 45px;
    background: white;
    color: #136855;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.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;
}

/* === CONTENU CARTE === */

.asg-card-content {
    background: white;
    padding: 20px 15px;
}

.asg-product-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.asg-modern-card:hover .asg-product-name {
    color: #136855;
}

.asg-price {
    color: #136855;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

/* === INDICATEURS STOCK BAS === */

.asg-stock-indicator {
    font-size: 12px;
    margin-top: 10px;
}

.asg-stock-available {
    color: #28a745;
    font-weight: 600;
}

.asg-stock-limited {
    color: #ffc107;
    font-weight: 600;
}

.asg-stock-unavailable {
    color: #dc3545;
    font-weight: 600;
}

.asg-stock-unknown {
    color: #6c757d;
    font-weight: 600;
}

/* === RESPONSIVE === */

@media (max-width: 768px) {
    .asg-modern-card {
        margin-bottom: 20px;
    }
    
    .asg-card-image {
        height: 220px;
    }
    
    .asg-action-simple {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .asg-card-actions {
        gap: 10px;
    }
    
    .asg-price {
        font-size: 16px;
    }
}




/* === BADGES STOCK AVEC NOUVELLES COULEURS SPÉCIFIQUES === */

.asg-stock-simple {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Badge VERT pour "Disponible" */
.asg-stock-simple.disponible {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

/* Badge ORANGE pour "Stock Bas" */
.asg-stock-simple.stock-bas {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

/* Badge ROUGE pour "Épuisé" */
.asg-stock-simple.epuise,
.asg-stock-simple.épuisé {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* === COMPATIBILITÉ AVEC LES ANCIENS ÉTATS === */

/* Pour "En stock" (si utilisé) */
.asg-stock-simple.en-stock {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

/* Pour "Stock limité" (si utilisé) */
.asg-stock-simple.stock-limité,
.asg-stock-simple.stock-limite {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

/* Pour "Rupture" (si utilisé) */
.asg-stock-simple.rupture,
.asg-stock-simple.rupture-de-stock {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Badge par défaut pour autres états */
.asg-stock-simple:not(.disponible):not(.stock-bas):not(.epuise):not(.épuisé):not(.en-stock):not(.stock-limité):not(.stock-limite):not(.rupture):not(.rupture-de-stock) {
    background: #f8f9fa;
    color: #6c757d;
    border-color: #e9ecef;
}



        /* Button used to open the chat form - fixed at the bottom of the page */
        .open-button {
            background-color: #136855;
            color: white;
            padding: 6px 14px;
            border: none;
            cursor: pointer;
            opacity: 0.8;
            position: fixed;
            bottom: 120px;
            right: 28px;
            z-index: 99999;
            width: 80px;
        }

        /* The popup chat - hidden by default */
        .chat-popup {
            display: none;
            position: fixed;
            bottom: 0;
            right: 15px;
            border: 3px solid #f1f1f1;
            z-index: 9;
        }

        /* Add styles to the form container */
        .form-container {
            max-width: 300px;
            padding: 10px;
            background-color: white;
        }

        /* Full-width textarea */
        .form-container textarea {
            width: 100%;
            padding: 15px;
            margin: 5px 0 22px 0;
            border: none;
            background: #f1f1f1;
            resize: none;
            min-height: 200px;
        }

        /* When the textarea gets focus, do something */
        .form-container textarea:focus {
            background-color: #ddd;
            outline: none;
        }

        /* Set a style for the submit/send button */
        .form-container .btn {
            background-color: #04AA6D;
            color: white;
            padding: 16px 20px;
            border: none;
            cursor: pointer;
            width: 100%;
            margin-bottom: 10px;
            opacity: 0.8;
        }

        /* Add a red background color to the cancel button */
        .form-container .cancel {
            background-color: red;
        }

        /* Add some hover effects to buttons */
        .form-container .btn:hover,
        .open-button:hover {
            opacity: 1;
        }

        /* === BOUTON 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: 8px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 25px rgba(19, 104, 85, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: visible; /* Changé de hidden à visible pour le badge */
            min-width: 120px;
            justify-content: center;
        }

        .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) scale(1.05);
            box-shadow: 0 12px 35px rgba(19, 104, 85, 0.4);
            text-decoration: none;
            color: white;
        }

        .asg-cart-icon {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .asg-cart-button:hover .asg-cart-icon {
            transform: scale(1.2);
        }

        .asg-cart-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #dc3545 !important;
            color: white !important;
            border-radius: 50%;
            width: 26px;
            height: 26px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            font-size: 13px !important;
            font-weight: 700 !important;
            border: 3px solid white !important;
            box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4) !important;
            animation: pulse 2s infinite;
            z-index: 10 !important;
            line-height: 1 !important;
            text-align: center !important;
            min-width: 26px;
        }

        .asg-cart-empty {
            background: #6c757d;
            padding: 12px 18px;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(108, 117, 125, 0.2);
            transition: all 0.3s ease;
        }

        .asg-cart-empty:hover {
            background: #5a6268;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
            text-decoration: none;
            color: white;
        }

        .asg-cart-empty-icon {
            font-size: 16px;
            opacity: 0.7;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes cartShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .asg-cart-button.cart-updated {
            animation: cartShake 0.5s ease-in-out;
        }

        /* Responsive pour le panier */
        @media (max-width: 768px) {
            .asg-floating-cart {
                bottom: 100px;
                right: 20px;
            }
            
            .asg-cart-button {
                padding: 12px 16px;
                font-size: 12px;
                min-width: 100px;
            }
            
            .asg-cart-icon {
                font-size: 16px;
            }
            
            .asg-cart-badge {
                width: 22px !important;
                height: 22px !important;
                font-size: 11px !important;
                top: -8px !important;
                right: -8px !important;
                border: 2px solid white !important;
            }
        }

        /* Style de débogage pour vérifier la visibilité du badge */
        .asg-cart-badge {
            /* Ajout d'un contour temporaire pour le débogage */
            outline: 2px solid yellow !important;
        }