.washable-section {
    width: 100%;
    padding: 20px 15px 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.washable-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.washable-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
    width: 100%;
}

.washable-media {
    width: 50%;
    display: flex;
}

.washable-img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.washable-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.washable-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.washable-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: #E88597;
    margin-top: 2px;
}

.washable-heading {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

.washable-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding-left: 34px;
}

.washable-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.delivery-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

@media (max-width: 900px) {
    .washable-section {
        padding: 20px 15px 32px;
    }

    .washable-row {
        flex-direction: column;
        gap: 20px;
    }

    .washable-media {
        width: 100%;
    }

    .washable-img {
        height: auto;
    }

    .washable-content {
        width: 100%;
    }

    .washable-text {
        padding-left: 0;
        font-size: 16px;
    }

    .washable-heading {
        font-size: 20px;
    }
}