.shade-finder-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.shade-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.shade-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.shade-card {
    flex: 0 0 212px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 212px;
}

.shade-card img {
    width: 212px;
    height: 212px;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
    border-radius: 0;
}

.shade-desc {
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    margin: 0;
    text-align: center;
}

@media (max-width: 600px) {
    .shade-container {
        gap: 8px;
        justify-content: center;
    }

    .shade-card {
        flex: 0 0 47%;
        width: 47%;
        max-width: none;
    }

    .shade-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .shade-desc {
        font-size: 12px;
        line-height: 1.3;
    }

    .shade-title {
        margin-bottom: 20px;
    }

    .shade-finder-section {
        padding: 30px 10px 0;
    }
}