.wds-all-designers-grid-container {
    max-width: 90%;
    margin: 0 auto;
}

.wds-all-designers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.wds-designer-grid-item {
    position: relative;
    transition: transform 0.3s ease;
}

.wds-designer-grid-item:hover {
    transform: translateY(-5px);
}

.wds-designer-grid-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.wds-designer-grid-image {
    height: 100%;
    overflow: hidden;
    background: #f8f8f8;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wds-designer-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wds-designer-grid-item:hover .wds-designer-grid-img {
    transform: scale(1.05);
}

.wds-grid-placeholder-image {
    width: 100%;
    height: 100%;
    background: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: #ccc;
    font-weight: bold;
}

.wds-designer-grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px 15px;
    text-align: left;
}

.wds-designer-grid-overlay h3 {
    margin: 0px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background-color: black;
    width: fit-content;
    padding: 3px;
}

.wds-designer-location-designer-page {
    font-size: 14px;
    color: #fffffff;
    margin: 0;
    font-weight: 500;
    margin-left: 3px;
}

.wds-load-more-container {
    text-align: center;
    margin: 30px 0;
}

.wds-load-more-btn {
    background-color: #275c52 !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.wds-load-more-btn:hover {
    background-color: #1e5047 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.wds-load-more-btn:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .wds-all-designers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .wds-all-designers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wds-all-designers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wds-designer-grid-image {
        height: auto;
    }
    .wds-designer-grid-overlay h3 {
        font-size: 15px;
    }
    .wds-designer-location-designer-page{
        font-size: 13px;
    }
    .wds-all-designers-grid-container {
        max-width: 100%;
    }
}