    .galy-archive-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 15px;
        font-family: 'Arial', sans-serif;
    }
    
    .galy-archive-header {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .galy-archive-title {
        font-size: 28px;
        margin: 0;
        color: #000000 !important;
        position: relative;
        padding-bottom: 10px;
    }
    
    .galy-archive-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #CBB778;
    }
    
    .galy-archive-count {
        font-size: 16px;
        color: #666;
    }
    
    #galy-count-properties {
        font-weight: bold;
        color: #CBB778;
    }
    
    .galy-sort-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .galy-sort-select {
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        color: #666;
    }
    
    .galy-archive-content {
        display: flex;
        gap: 30px;
    }
    
    .galy-filter-sidebar {
        width: 320px;
        background-color: #f9f9f9;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
    }
    
    .galy-property-container {
        flex: 1;
        min-width: 0;
    }
    
    .galy-filter-title {
        font-size: 18px;
        margin: 0 0 20px;
        color: #000000;
        border-bottom: 2px solid #CBB778;
        padding-bottom: 10px;
    }
    
    .galy-filter-section {
        margin-bottom: 20px;
    }
    
    .galy-filter-section h4 {
        margin: 0 0 10px;
        font-size: 16px;
        color: #444;
    }
    
    .galy-price-range {
        margin: 15px 0;
    }
    
    .galy-price-inputs {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }
    
    .galy-price-min, .galy-price-max {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .galy-price-min input, .galy-price-max input {
        width: 100px;
        padding: 5px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        text-align: right;
    }
    
    .galy-filter-options {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .galy-filter-checkbox {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .galy-filter-checkbox-input {
        width: 16px;
        height: 16px;
        cursor: pointer;
    }
    
    .galy-filter-checkbox label {
        font-size: 14px;
        color: #666;
        cursor: pointer;
    }
    
    .galy-filter-select {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        color: #666;
    }
    
    .galy-filter-reset {
        width: 100%;
        background-color: transparent;
        color: #000000 !important;
        border: 1px solid #ddd;
        padding: 8px 12px !important;
        border-radius: 4px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 10px;
        text-align: center;
        box-sizing: border-box;
        font-size: 12px !important;
        display: block;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.4;
    }

    .galy-filter-reset:hover {
        background-color: #f2f2f2;
        border-color: #ccc;
        color: #333;
    }
    
    .galy-property-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .galy-featured-property {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background-color: white;
        display: flex;
        flex-direction: column;
    }
    
    .galy-featured-property:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .galy-featured-image-container {
        height: 250px;
        overflow: hidden;
    }
    
    .galy-featured-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .galy-featured-property:hover .galy-featured-image {
        transform: scale(1.05);
    }
    
    .galy-featured-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    
    .galy-featured-property-title {
        font-size: 20px !important;
        margin: 0 0 10px;
        color: #000000 !important;
    }
    
    .galy-featured-price {
        font-size: 22px;
        font-weight: bold;
        color: #444444 !important;
        margin-bottom: 15px;
    }
    
    .galy-featured-description {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
        flex-grow: 1;
    }
    
    .galy-featured-details {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .galy-featured-detail {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #555;
        font-size: 16px !important;
    }
    
    .galy-featured-detail i {
        color: #CBB778 !important;
        font-size: 18px !important;
    }
    
    .galy-featured-view-btn {
        width: 100% !important;
        background-color: #CBB778 !important;
        color: white !important;
        border: none !important;
        padding: 12px 25px !important;
        border-radius: 4px !important;
        font-weight: bold !important;
        text-decoration: none !important;
        text-align: center !important;
        letter-spacing: 1px !important;
        transition: background-color 0.3s ease !important;
        text-transform: uppercase !important;
        display: block !important;
    }
    
    .galy-featured-view-btn:hover {
        background-color: #b9a45e !important;
        color: white !important;
    }
    
    .galy-no-results {
        grid-column: 1 / -1;
        text-align: center;
        background-color: #f9f9f9;
        padding: 40px;
        border-radius: 8px;
    }
    
    .galy-no-results h3 {
        color: #333;
        margin-top: 0;
    }
    
    .galy-no-results p {
        color: #666;
    }
    
    /* Suppression des styles de pagination - plus nécessaires */
    
    .galy-loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    
    .galy-loading-spinner {
        width: 50px;
        height: 50px;
        border: 5px solid #f3f3f3;
        border-top: 5px solid #CBB778;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .ui-slider {
        height: 8px;
        background: #e0e0e0;
        border: none;
        border-radius: 4px;
        margin: 15px 0;
        position: relative; 
    }

    .ui-slider .ui-slider-range {
        background: #CBB778;
        position: absolute;
        height: 100%; 
        z-index: 1; 
    }

    .ui-slider .ui-slider-handle {
        width: 18px;
        height: 18px;
        background: #fff;
        border: 2px solid #CBB778;
        border-radius: 50%;
        cursor: pointer;
        top: -5px;
        position: absolute;
        z-index: 2;
        margin-left: -9px;
    }

    .ui-slider .ui-slider-handle:focus {
        outline: none;
    }

    .ui-slider .ui-slider-handle:hover {
        background-color: #f5f5f5; 
    }
    
    @media (max-width: 1024px) {
        .galy-filter-sidebar {
            width: 280px;
        }
    }
    
    @media (max-width: 768px) {
        .galy-archive-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        
        .galy-archive-content {
            flex-direction: column;
        }
        
        .galy-filter-sidebar {
            width: 100%;
            order: 2;
        }
        
        .galy-property-container {
            order: 1;
        }
        
        .galy-property-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
        
        .galy-featured-details {
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .galy-featured-detail {
            width: 48%;
        }
    }
    
    @media (max-width: 480px) {
        .galy-property-grid {
            grid-template-columns: 1fr;
        }
        
        .galy-featured-detail {
            width: 100%;
        }
    }
    