body {
            font-family: 'Poppins', sans-serif;
            background-color: #fff;
            color: #000;
            margin: 0;
            padding: 0;
        }
        
        .main-container {
            max-width: 1500px;
            margin: 0 auto;
            display: flex;
            margin-top: 80px;
            position: relative;
        }
        
        .filters-section {
            width: 300px;
            flex-shrink: 0;
            position: sticky;
            top: 100px;
            height: calc(100vh - 100px);
            overflow-y: auto;
            padding-bottom: 20px;
        }
        
        .boutiques-section {
            flex-grow: 1;
        }
        
        h1 {
            text-align: center;
            margin: 0 0 10px 0;
            color: #000;
            font-size: 1.5rem;
            background: #fff;
            position: sticky;
            top: 0;
            padding: 10px 0;
            z-index: 10;
        }
        
        .search-container1 {
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            margin-right: 20px;
            padding: 5px;
        }
        
        .search-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .form-group {
            width: 100%;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #000;
            font-size: 0.95rem;
        }
        
        .form-control {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 3px;
        }
        
        .search-btn {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 8px;
            border-radius: 3px;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        .search-btn:hover {
            background: #c0392b;
        }
        
        .reset-btn {
            background: #95a5a6;
            color: white;
            border: none;
            padding: 8px;
            border-radius: 3px;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
            display: block;
            text-align: center;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        .reset-btn:hover {
            background: #7f8c8d;
        }
        
        .search-results-info {
            margin-top: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        
        .search-results-info strong {
            color: #e74c3c;
        }
        
        .boutique-vertical {
            border-radius: 3px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .boutique-header {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        
        .boutique-logo-container {
            flex: 0 0 100px;
            margin-right: 20px;
            margin-left: 20px;
        }
        
        .boutique-logo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .boutique-info {
            flex: 1;
            display: flex;
            justify-content: space-between;
        }
        
        .boutique-title {
            margin: 0;
            font-size: 1.5rem;
            color: #000;
            display: flex;
            align-items: center;
        }
        
        .boutique-meta {
            display: flex;
            gap: 15px;
            margin: 10px 0;
            font-size: 0.85rem;
            color: #000;
        }
        
        .boutique-meta i {
            margin-right: 5px;
            color: #f1c40f;
        }
        
        .boutique-rating {
            display: flex;
            align-items: center;
            margin: 5px 0;
        }

        .boutique-rating span {
            font-size: 0.85rem;
        }
        
        .stars {
            color: #f1c40f;
            margin-right: 8px;
        }
        
        .visit-btn {
            display: inline-block;
            padding: 8px 20px;
            background: #151335;
            color: white;
            text-decoration: none;
            border-radius: 3px;
            margin-top: 5px;
            transition: background 0.3s;
            font-size: 0.85rem;
            margin-right: 10px
            
        }
        
        .produits-container {
            padding: 10px;
            width: 1040px;
        }
        
        .section-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #000;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            color: #f1c40f;
        }
        
        .produits-carousel {
            position: relative;
        }
        
        .produit-slide {
            padding: 0 10px;
        }
        
        .produit-card {
            background: white;
            border-radius: 3px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .produit-card:hover {
            transform: translateY(-1px);
        }
        
        .produit-img {
            width: 180px;
            height: 180px;
            object-fit: cover;
        }
        
        .produit-info {
            padding: 3px;
        }
        
        .produit-title {
            padding-top: 5px;
            font-size: 0.8rem;
            margin: 5px 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .produit-price {
            font-weight: bold;
            color: #151335;
            font-size: 0.95rem;
        }
        
        .slick-prev, .slick-next {
            width: 40px;
            height: 40px;
            z-index: 1;
            background: rgba(255,255,255,0.8);
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .slick-prev {
            left: 0px;
        }
        
        .slick-next {
            right: 0px;
        }
        
        .slick-prev:before, .slick-next:before {
            color: #151335;
            font-size: 20px;
            opacity: 1;
        }
        
        .slick-prev:hover, .slick-next:hover {
            background: white;
        }
        
        .no-products {
            text-align: center;
            padding: 30px;
            color: #777;
            font-style: italic;
            background: white;
            border-radius: 8px;
        }
        
        .no-products i {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #ddd;
        }
        
        .categorie-badge {
            display: inline-block;
            background: #e8f4fc;
            color: #2c3e50;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            margin-left: 10px;
        }
        
        .no-items {
            text-align: center;
            padding: 50px;
            background: white;
            border-radius: 10px;
        }